dAppBooster
    Preparing search index...
    interface TokenSelectRowProps {
        iconSize: number;
        isLoadingBalances?: boolean;
        onClick: (
            token: {
                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;
        showAddTokenButton?: boolean;
        showBalance?: boolean;
        token: {
            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;
        };
    }

    Hierarchy

    • Omit<FlexProps, "onClick">
      • TokenSelectRowProps
    Index

    Properties

    iconSize: number
    isLoadingBalances?: boolean
    onClick: (
        token: {
            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
    showAddTokenButton?: boolean
    showBalance?: boolean
    token: {
        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;
    }