export interface TokenList { name: string; logoURI: string; timestamp: string; tokens: TokenInfo[]; shortName?: string; } export interface TokenInfo { chainId: string; decimals: number; address: string; symbol: string; name: string; logoURI: string; index?: number; image?: string; amount?: number; price?: number; unitPrice?: number; ['24hChange']?: number; }