dAppBooster
    Preparing search index...
    interface TokenInputProps {
        containerHeight?: number;
        currentNetworkId?: number;
        iconSize?: number;
        itemHeight?: number;
        networks?: Networks;
        placeholder?: string;
        showAddTokenButton?: boolean;
        showBalance?: boolean;
        showTopTokens?: boolean;
        singleToken?: boolean;
        thousandSeparator?: boolean;
        title?: string;
        tokenInput: {
            amount: bigint;
            amountError: string | null | undefined;
            balance: bigint | undefined;
            balanceError: Error | null;
            isLoadingBalance: boolean;
            selectedToken:
                | {
                    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;
            setAmount: Dispatch<SetStateAction<bigint>>;
            setAmountError: Dispatch<SetStateAction<string | null | undefined>>;
            setTokenSelected: Dispatch<
                SetStateAction<
                    | {
                        address: string;
                        chainId: number;
                        decimals: number;
                        extensions?: Record<
                            string,
                            | string
                            | number
                            | bigint
                            | boolean
                            | Record<
                                string,
                                | string
                                | number
                                | bigint
                                | boolean
                                | Record<(...), (...)>
                                | null
                                | undefined,
                            >
                            | null
                            | undefined,
                        >;
                        logoURI?: string;
                        name: string;
                        symbol: string;
                    }
                    | undefined,
                >,
            >;
        };
    }

    Hierarchy

    Index

    Properties

    containerHeight?: number
    currentNetworkId?: number
    iconSize?: number
    itemHeight?: number
    networks?: Networks
    placeholder?: string
    showAddTokenButton?: boolean
    showBalance?: boolean
    showTopTokens?: boolean
    singleToken?: boolean
    thousandSeparator?: boolean
    title?: string
    tokenInput: {
        amount: bigint;
        amountError: string | null | undefined;
        balance: bigint | undefined;
        balanceError: Error | null;
        isLoadingBalance: boolean;
        selectedToken:
            | {
                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;
        setAmount: Dispatch<SetStateAction<bigint>>;
        setAmountError: Dispatch<SetStateAction<string | null | undefined>>;
        setTokenSelected: Dispatch<
            SetStateAction<
                | {
                    address: string;
                    chainId: number;
                    decimals: number;
                    extensions?: Record<
                        string,
                        | string
                        | number
                        | bigint
                        | boolean
                        | Record<
                            string,
                            | string
                            | number
                            | bigint
                            | boolean
                            | Record<(...), (...)>
                            | null
                            | undefined,
                        >
                        | null
                        | undefined,
                    >;
                    logoURI?: string;
                    name: string;
                    symbol: string;
                }
                | undefined,
            >,
        >;
    }