@dynamic-labs/sdk-react-core
Version:
A React SDK for implementing wallet web3 authentication and authorization to your website.
11 lines (10 loc) • 355 B
TypeScript
import { FC } from 'react';
import { WalletConnector } from '@dynamic-labs/wallet-connector-core';
export type SwitchWalletViewProps = {
onCancel: () => void;
onTryToReconnect: () => void;
connector: WalletConnector;
expectedAddress: string;
activeAddress?: string;
};
export declare const SwitchWalletView: FC<SwitchWalletViewProps>;