bigblocks
Version:
Complete Bitcoin UI component library - authentication, social, wallet, market, inscriptions, and blockchain interactions for React
21 lines • 659 B
TypeScript
/**
* Yours Wallet Connector Component
*
* Provides a complete UI for connecting to Yours Wallet with:
* - Installation detection and prompts
* - Connection management
* - Error handling
* - Loading states
*/
interface YoursWalletConnectorProps {
onSuccess?: (result: {
publicKey: string;
idKey?: string;
encryptedBackup?: string;
}) => void;
onError?: (error: string) => void;
className?: string;
}
export declare function YoursWalletConnector({ onSuccess, onError, className, }: YoursWalletConnectorProps): import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=YoursWalletConnector.d.ts.map