dAppBooster
    Preparing search index...
    interface TokenDropdownProps {
        containerHeight?: number;
        currentNetworkId?: number;
        currentToken?: {
            address: string;
            chainId: number;
            decimals: number;
            extensions?: Record<
                string,
                | string
                | number
                | bigint
                | boolean
                | Record<
                    string,
                    | string
                    | number
                    | bigint
                    | boolean
                    | Record<string, string | number | bigint | boolean | null | undefined>
                    | null
                    | undefined,
                >
                | null
                | undefined,
            >;
            logoURI?: string;
            name: string;
            symbol: string;
        };
        iconSize?: number;
        itemHeight?: number;
        networks?: Networks;
        onTokenSelect: (
            token:
                | {
                    address: string;
                    chainId: number;
                    decimals: number;
                    extensions?: Record<
                        string,
                        | string
                        | number
                        | bigint
                        | boolean
                        | Record<
                            string,
                            | string
                            | number
                            | bigint
                            | boolean
                            | Record<
                                string,
                                string
                                | number
                                | bigint
                                | boolean
                                | null
                                | undefined,
                            >
                            | null
                            | undefined,
                        >
                        | null
                        | undefined,
                    >;
                    logoURI?: string;
                    name: string;
                    symbol: string;
                }
                | undefined,
        ) => void;
        placeholder?: string;
        showAddTokenButton?: boolean;
        showBalance?: boolean;
        showTopTokens?: boolean;
    }

    Hierarchy (View Summary)

    Index

    Properties

    containerHeight?: number
    currentNetworkId?: number
    currentToken?: {
        address: string;
        chainId: number;
        decimals: number;
        extensions?: Record<
            string,
            | string
            | number
            | bigint
            | boolean
            | Record<
                string,
                | string
                | number
                | bigint
                | boolean
                | Record<string, string | number | bigint | boolean | null | undefined>
                | null
                | undefined,
            >
            | null
            | undefined,
        >;
        logoURI?: string;
        name: string;
        symbol: string;
    }
    iconSize?: number
    itemHeight?: number
    networks?: Networks
    onTokenSelect: (
        token:
            | {
                address: string;
                chainId: number;
                decimals: number;
                extensions?: Record<
                    string,
                    | string
                    | number
                    | bigint
                    | boolean
                    | Record<
                        string,
                        | string
                        | number
                        | bigint
                        | boolean
                        | Record<string, string | number | bigint | boolean | null | undefined>
                        | null
                        | undefined,
                    >
                    | null
                    | undefined,
                >;
                logoURI?: string;
                name: string;
                symbol: string;
            }
            | undefined,
    ) => void
    placeholder?: string
    showAddTokenButton?: boolean
    showBalance?: boolean
    showTopTokens?: boolean