Back to Components
|

WalletOverview

WalletOverview

Display comprehensive wallet information including balance, recent transactions, and quick actions.

🔧

Live preview would be rendered here

Component: WalletOverview

Install component

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

export default function WalletPage() {
  return (
    <WalletOverview
      balance={{
        confirmed: 150000000, // 1.5 BSV in satoshis
        unconfirmed: 0,
        total: 150000000
      }}
      onSend={() => console.log('Send clicked')}
      onReceive={() => console.log('Receive clicked')}
    />
  );
}