UNPKG

@nfid/identitykit

Version:

A React library for adding wallet connections to dApps.

11 lines (10 loc) 530 B
import { SignerConfig } from "../../../../../lib/types"; export interface SelectWalletListProps { signers: SignerConfig[]; onSelectSigner: (id: string) => Promise<void | SignerConfig>; onCustomSignerSelect: (url: string) => unknown; isViewAll: boolean; onViewAll: () => void; featuredSigner?: SignerConfig; } export declare const SelectWalletList: ({ signers, onSelectSigner, isViewAll, onViewAll, featuredSigner, onCustomSignerSelect, }: SelectWalletListProps) => import("react/jsx-runtime").JSX.Element;