CCC Docs
    Preparing search index...

    Type Alias FeePayerGetFeeRateOptionsLike

    FeePayerGetFeeRateOptionsLike:
        | {
            feeRate?: NumLike;
            feeRateBlockRange?: NumLike;
            maxFeeRate?: NumLike;
        }
        | undefined
        | null

    Options for getting the fee rate from a fee payer.

    Type declaration

    • { feeRate?: NumLike; feeRateBlockRange?: NumLike; maxFeeRate?: NumLike }
      • OptionalfeeRate?: NumLike

        The fee rate to use. If provided, the fee payer will not fetch the fee rate from the client.

      • OptionalfeeRateBlockRange?: NumLike

        The block range to use for calculating the fee rate.

      • OptionalmaxFeeRate?: NumLike

        The maximum allowed fee rate.

    • undefined
    • null