UNPKG

@lifi/wallet-management

Version:

LI.FI Wallet Management solution.

15 lines (14 loc) 367 B
import type { ChainType } from '@lifi/sdk'; export declare enum WalletManagementEvent { WalletConnected = "walletConnected" } export type WalletManagementEvents = { walletConnected: WalletConnected; }; export interface WalletConnected { address: string; chainId: number; chainType: ChainType; connectorId: string; connectorName: string; }