UNPKG

@kryptogo/kryptogokit-sdk-react

Version:

KryptogoKit offers a comprehensive web3 wallet solution with seamless KryptoGO Auth integration and multi-wallet connection support. Designed for users. Built for developers.

12 lines (11 loc) 570 B
import type { CreateConnectorFn } from 'wagmi'; import type { KryptogoKitWalletConnectParameters, WalletList } from './Wallet'; export interface ConnectorsForWalletsParameters { projectId?: string; appName: string; appDescription?: string; appUrl?: string; appIcon?: string; walletConnectParameters?: KryptogoKitWalletConnectParameters; } export declare const connectorsForWallets: (walletList: WalletList, { projectId, walletConnectParameters, appName, appDescription, appUrl, appIcon, }: ConnectorsForWalletsParameters) => CreateConnectorFn[];