Back to Components
|

QuickSendButton

QuickSendButton

A streamlined Bitcoin BSV sending component that provides instant access to send transactions without opening a full wallet interface

🔧

Live preview would be rendered here

Component: QuickSendButton

Install component

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

export default function BasicSendExample() {
  return (
    <div className="send-section">
      <h3>Send BSV Instantly</h3>
      
      <QuickSendButton 
        onSuccess={(txid, amount, address) => {
          console.log(`Sent ${amount} satoshis to ${address}. TxID: ${txid}`);
        }}
        onError={(error) => {
          console.error('Send failed:', error);
        }}
      />
    </div>
  );
}