@stablecoin.xyz/react
Version:
React hooks and components for SBC Account Abstraction
17 lines • 688 B
TypeScript
export interface WalletConnectProps {
/** Custom className for styling */
className?: string;
/** Callback when wallet connection changes */
onConnectionChange?: (connected: boolean) => void;
}
/**
* WalletConnect component - placeholder for future wallet integration
*
* This component will be expanded in the future to handle:
* - Multiple wallet providers (MetaMask, WalletConnect, Coinbase Wallet, etc.)
* - Wallet switching
* - Connection state management
* - Network switching
*/
export declare function WalletConnect({ className, onConnectionChange }: WalletConnectProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=WalletConnect.d.ts.map