dAppBooster
    Preparing search index...
    BigNumberInput: FC<BigNumberInputProps> = ...

    BigNumberInput component for handling bigint values with decimal precision.

    This component provides a way to input and validate numeric values with specific decimal places. It handles conversion between string representation and bigint values.

    The props for the BigNumberInput component.

    Whether to focus the input automatically.

    The number of decimal places to use.

    Whether the input is disabled.

    Maximum allowed value.

    Minimum allowed value.

    Function called when the value changes.

    Function called when there's an error.

    Placeholder text for the input.

    Custom input renderer.

    The current value.

    <BigNumberInput
    decimals={18}
    onChange={(value) => console.log(value)}
    value={BigInt(0)}
    />