dAppBooster
    Preparing search index...

    Type Alias TokensMap

    Represents a cache for the list of tokens that is loaded at app startup. This file serves as a minimum version of the cache, potentially acting as a singleton.

    type TokensMap = {
        tokens: any[];
        tokensByChainId: {
            [chainId: number]: {
                address: string;
                chainId: number;
                decimals: number;
                extensions?: Record<
                    string,
                    | string
                    | number
                    | bigint
                    | boolean
                    | Record<
                        string,
                        | string
                        | number
                        | bigint
                        | boolean
                        | Record<string, (...) | (...) | (...) | (...) | (...) | (...) | (...)>
                        | null
                        | undefined,
                    >
                    | null
                    | undefined,
                >;
                logoURI?: string;
                name: string;
                symbol: string;
            }[];
        };
    }
    Index

    Properties

    tokens: any[]
    tokensByChainId: {
        [chainId: number]: {
            address: string;
            chainId: number;
            decimals: number;
            extensions?: Record<
                string,
                | string
                | number
                | bigint
                | boolean
                | Record<
                    string,
                    | string
                    | number
                    | bigint
                    | boolean
                    | Record<string, (...) | (...) | (...) | (...) | (...) | (...) | (...)>
                    | null
                    | undefined,
                >
                | null
                | undefined,
            >;
            logoURI?: string;
            name: string;
            symbol: string;
        }[];
    }