Interface ICustomTransactionParameters

interface ICustomTransactionParameters {
    calldata?: Buffer;
    chainId?: ChainId;
    disableAutoRefund?: boolean;
    estimatedFees?: bigint;
    feeRate: number;
    from?: string;
    network: Network;
    nonWitnessUtxo?: Buffer;
    optionalOutputs?: PsbtOutputExtended[];
    priorityFee: bigint;
    randomBytes?: Buffer;
    script: (Buffer | Stack)[];
    signer: ECPairInterface | Signer;
    to: string;
    utxos: UTXO[];
    witnesses: Buffer[];
}

Hierarchy (view full)

Properties

calldata?: Buffer
chainId?: ChainId
disableAutoRefund?: boolean
estimatedFees?: bigint
feeRate: number
from?: string
network: Network
nonWitnessUtxo?: Buffer
optionalOutputs?: PsbtOutputExtended[]
priorityFee: bigint
randomBytes?: Buffer
script: (Buffer | Stack)[]
signer: ECPairInterface | Signer
to: string
utxos: UTXO[]
witnesses: Buffer[]