YoursWalletConnector
Connect to Yours Wallet browser extension for Bitcoin SV transactions and identity management.
🔧
Live preview would be rendered here
Component: YoursWalletConnector
Install component
npm$
npm install bigblocks
import { YoursWalletConnector } from 'bigblocks';
export default function WalletConnect() {
return (
<YoursWalletConnector
onSuccess={(result) => {
console.log('Connected to Yours Wallet:', result.publicKey);
}}
onError={(error) => {
console.error('Connection failed:', error);
}}
/>
);
}