@dynamic-labs/sdk-react-core
Version:
A React SDK for implementing wallet web3 authentication and authorization to your website.
13 lines (12 loc) • 350 B
TypeScript
import React from 'react';
export interface GlobalWalletConfirmViewProps {
pairingInfo: {
name: string;
url: string;
icons: string[];
};
onConfirm: () => void;
onCancel: () => void;
}
export declare const GlobalWalletConfirmView: React.FC<GlobalWalletConfirmViewProps>;
export default GlobalWalletConfirmView;