Back to Components
|

QuickDonateButton

QuickDonateButton

A streamlined donation button for accepting Bitcoin SV donations with preset amounts and one-click processing

🔧

Live preview would be rendered here

Component: QuickDonateButton

Install component

npm
$npm install bigblocks
import { QuickDonateButton } from 'bigblocks';

export default function DonationSection() {
  return (
    <QuickDonateButton 
      recipientAddress="1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa"
      amounts={[0.001, 0.01, 0.1]}
      onSuccess={(txid) => {
        console.log('Donation sent! TxID:', txid);
      }}
    />
  );
}