dAppBooster
    Preparing search index...

    Variable tokensSchemaConst

    tokensSchema: ZodArray<
        ZodObject<
            {
                address: ZodString;
                chainId: ZodNumber;
                decimals: ZodNumber;
                extensions: ZodOptional<
                    ZodRecord<
                        ZodString,
                        ZodUnion<
                            [
                                ZodRecord<
                                    ZodString,
                                    ZodUnion<[ZodRecord<(...), (...)>, ZodUnion<(...)>]>,
                                >,
                                ZodUnion<[ZodUnion<[(...), (...)]>, ZodBigInt]>,
                            ],
                        >,
                    >,
                >;
                logoURI: ZodOptional<ZodString>;
                name: ZodString;
                symbol: ZodString;
            },
            "strip",
            ZodTypeAny,
            {
                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;
            },
            {
                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;
            },
        >,
        "many",
    > = ...

    A collection of tokenSchema objects.

    export const tokensSchema = z.array(tokenSchema)