export type TokenRegistryMetadata = {
    name?: string | null;
    description?: string | null;
    ticker?: string | null;
    url?: string | null;
    logo?: string | null;
    decimals?: number | null;
};
