Variable tokenListSchemaConst
tokenListSchema: ZodObject<
{
keywords: ZodOptional<ZodArray<ZodString>>;
logoURI: ZodOptional<ZodString>;
name: ZodString;
tags: ZodOptional<
ZodRecord<
ZodString,
ZodObject<{ description: ZodString; name: ZodString }, $strip>,
>,
>;
timestamp: ZodString;
tokens: ZodArray<
ZodObject<
{
address: ZodString;
chainId: ZodNumber;
decimals: ZodNumber;
extensions: ZodOptional<
ZodRecord<
ZodString,
ZodUnion<
[ZodRecord<ZodString, ZodUnion<(...)>>, ZodUnion<[(...), (...)]>],
>,
>,
>;
logoURI: ZodOptional<ZodString>;
name: ZodString;
symbol: ZodString;
},
$strip,
>,
>;
version: ZodObject<
{ major: ZodNumber; minor: ZodNumber; patch: ZodNumber },
$strip,
>;
},
$strip,
> = ...
An schema of a token list object. Matches the Uniswap token list type.