Interface ITransactionParameters

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

Hierarchy (view full)

Properties

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