UNPKG

@funded-labs/plug-controller

Version:

Internet Computer Plug wallet's controller

16 lines (15 loc) 307 B
export interface StandardToken { name: string; symbol: string; canisterId: string; standard: string; decimals: number; color?: string; logo?: string; fee?: bigint | number; } export interface TokenBalance { amount: string; token: StandardToken; error?: string; }