dAppBooster
    Preparing search index...

    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.

    export 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(),
    })