Interface IInteractionParameters

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

Hierarchy

Properties

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