Interface SharedInteractionParameters

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

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
signer: ECPairInterface | Signer
to?: string
utxos: UTXO[]