@mysten/dapp-kit
Version:
A collection of React hooks and components for interacting with the Sui blockchain and wallets.
10 lines (9 loc) • 444 B
TypeScript
import type { WalletWithRequiredFeatures } from '@mysten/wallet-standard';
type WalletListProps = {
selectedWalletName?: string;
onPlaceholderClick: () => void;
onSelect: (wallet: WalletWithRequiredFeatures) => void;
wallets: WalletWithRequiredFeatures[];
};
export declare function WalletList({ selectedWalletName, onPlaceholderClick, onSelect, wallets, }: WalletListProps): import("react/jsx-runtime").JSX.Element;
export {};