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(),
})
An schema of a token object. Matches the Uniswap token type.