export type TokenInformationClass = {
    policyId?: string | null;
    assetName?: string | null;
    assetNameAscii?: string | null;
    ticker?: string | null;
    description?: string | null;
    url?: string | null;
    decimals?: number | null;
    logo?: string | null;
};
