Token: {
    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;
}

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

const tokenSchema = z.object({
name: z.string().min(1),
address,
symbol: z.string().min(1),
decimals: z.number(),
chainId: z.number().min(1),
logoURI: z.string().url().optional(),
extensions: z
.record(key, z.record(key, z.record(key, extensionValue).or(extensionValue)).or(extensionValue))
.optional(),
})