UNPKG

@lifi/wallet-management

Version:

LI.FI Wallet Management solution.

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