@dynamic-labs/sdk-react-core
Version:
A React SDK for implementing wallet web3 authentication and authorization to your website.
10 lines (9 loc) • 319 B
TypeScript
import { FC } from 'react';
import { Wallet } from '@dynamic-labs/wallet-connector-core';
type ChooseLinkedWalletViewProps = {
showBackButton?: boolean;
onSelectWallet: (wallet: Wallet) => void;
wallets?: Wallet[];
};
export declare const ChooseLinkedWalletView: FC<ChooseLinkedWalletViewProps>;
export {};