dAppBooster
    Preparing search index...
    interface TokenSelectProps {
        containerHeight?: number;
        currentNetworkId?: number;
        iconSize?: number;
        itemHeight?: number;
        networks?: Networks;
        onTokenSelect: (
            token:
                | undefined
                | {
                    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;
                },
        ) => void;
        placeholder?: string;
        showAddTokenButton?: boolean;
        showBalance?: boolean;
        showTopTokens?: boolean;
    }

    Hierarchy (View Summary)

    Index

    Properties

    containerHeight?: number
    currentNetworkId?: number
    iconSize?: number
    itemHeight?: number
    networks?: Networks
    onTokenSelect: (
        token:
            | undefined
            | {
                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;
            },
    ) => void
    placeholder?: string
    showAddTokenButton?: boolean
    showBalance?: boolean
    showTopTokens?: boolean