export type Asset = {
    address: string;
    slug: string;
    symbol: string;
    name: string;
    image: string;
    decimals: number;
    exchangeRate: string;
    usdExchangeRate: number;
    verification: 'whitelist' | 'none';
    totalSupply: string;
    fdv: number;
};
