Interface IFundingTransactionParameters

interface IFundingTransactionParameters {
    amount: bigint;
    chainId?: ChainId;
    estimatedFees?: bigint;
    feeRate: number;
    from?: string;
    network: Network;
    nonWitnessUtxo?: Buffer;
    optionalOutputs?: PsbtOutputExtended[];
    priorityFee: bigint;
    signer: ECPairInterface | Signer;
    splitInputsInto?: number;
    to?: string;
    utxos: UTXO[];
}

Hierarchy (view full)

Properties

amount: bigint
chainId?: ChainId
estimatedFees?: bigint
feeRate: number
from?: string
network: Network
nonWitnessUtxo?: Buffer
optionalOutputs?: PsbtOutputExtended[]
priorityFee: bigint
signer: ECPairInterface | Signer
splitInputsInto?: number
to?: string
utxos: UTXO[]