TokenList: {
    keywords?: string[];
    logoURI?: string;
    name: string;
    tags?: Record<string, {
        description: string;
        name: string;
    }>;
    timestamp: string;
    tokens: {
        address: string;
        chainId: number;
        decimals: number;
        extensions?: Record<string,
            | undefined
            | null
            | string
            | number
            | bigint
            | boolean
            | Record<string,
                | undefined
                | null
                | string
                | number
                | bigint
                | boolean
                | Record<string,
                    | undefined
                    | null
                    | string
                    | number
                    | bigint
                    | boolean>>>;
        logoURI?: string;
        name: string;
        symbol: string;
    }[];
    version: {
        major: number;
        minor: number;
        patch: number;
    };
}

An schema of a token list object. Matches the Uniswap token list type.

const tokenListSchema = z.object({
name: z.string(),
timestamp: z.string(),
version: versionSchema,
tokens: tokensSchema,
keywords: z.array(z.string()).optional(),
tags: tagsSchema.optional(),
logoURI: z.string().optional(),
})