CCC Docs
    Preparing search index...

    Interface FeePayerFromAddressOptions

    interface FeePayerFromAddressOptions {
        changeFn?: (
            tx: Transaction,
            capacity: bigint,
        ) => NumLike | Promise<NumLike>;
        feeRate?: NumLike;
        filter?: ClientCollectableSearchKeyFilterLike;
        options?: {
            feeRateBlockRange?: NumLike;
            maxFeeRate?: NumLike;
            shouldAddInputs?: boolean;
        };
    }
    Index

    Properties

    changeFn?: (tx: Transaction, capacity: bigint) => NumLike | Promise<NumLike>
    feeRate?: NumLike
    options?: {
        feeRateBlockRange?: NumLike;
        maxFeeRate?: NumLike;
        shouldAddInputs?: boolean;
    }