@openocean.finance/wallet-management
Version:
Openocean Wallet Management solution.
18 lines (14 loc) • 361 B
text/typescript
import type { ChainType } from '@openocean.finance/widget-sdk'
export enum WalletManagementEvent {
WalletConnected = 'walletConnected',
}
export type WalletManagementEvents = {
walletConnected: WalletConnected
}
export interface WalletConnected {
address: string
chainId: number
chainType: ChainType
connectorId: string
connectorName: string
}