@funkit/connect
Version:
Funkit Connect SDK elevates DeFi apps via web2 sign-ins and one-click checkouts.
11 lines (10 loc) • 399 B
TypeScript
import type { CreateConnectorFn } from 'wagmi';
import type { WalletList } from './Wallet';
import { type ConnectorsForWalletsParameters } from './connectorsForWallets';
export declare function getDefaultWallets(parameters: ConnectorsForWalletsParameters): {
connectors: CreateConnectorFn[];
wallets: WalletList;
};
export declare function getDefaultWallets(): {
wallets: WalletList;
};