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