dAppBooster
    Preparing search index...
    interface TokenSelectListProps {
        containerHeight: number;
        iconSize: number;
        isLoadingBalances: boolean;
        itemHeight: number;
        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;
        showAddTokenButton?: boolean;
        showBalance: boolean;
        tokenList?: {
            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;
        }[];
    }

    Hierarchy

    • FlexProps
      • TokenSelectListProps
    Index

    Properties

    containerHeight: number
    iconSize: number
    isLoadingBalances: boolean
    itemHeight: number
    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
    showAddTokenButton?: boolean
    showBalance: boolean
    tokenList?: {
        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;
    }[]