UNPKG

@lifi/wallet-management

Version:

LI.FI Wallet Management solution.

19 lines (18 loc) 516 B
import { ChainType } from '@lifi/sdk'; import type { WalletConnector } from '../types/walletConnector.js'; type CombinedWalletConnector = { connector: WalletConnector; chainType: ChainType; }; export type CombinedWallet = { id: string; name: string; icon?: string; connectors: CombinedWalletConnector[]; }; type CombinedWallets = { installedWallets: CombinedWallet[]; notDetectedWallets: CombinedWallet[]; }; export declare const useCombinedWallets: () => CombinedWallets; export {};