Interface MultiSignParameters

interface MultiSignParameters {
    chainId?: ChainId;
    estimatedFees?: bigint;
    feeRate: number;
    from?: undefined;
    minimumSignatures: number;
    network: Network;
    nonWitnessUtxo?: Buffer;
    optionalOutputs?: PsbtOutputExtended[];
    psbt?: Psbt;
    pubkeys: Buffer[];
    receiver: string;
    refundVault: string;
    requestedAmount: bigint;
    to?: undefined;
    utxos: UTXO[];
}

Hierarchy

Properties

chainId?: ChainId
estimatedFees?: bigint
feeRate: number
from?: undefined
minimumSignatures: number
network: Network
nonWitnessUtxo?: Buffer
optionalOutputs?: PsbtOutputExtended[]
psbt?: Psbt
pubkeys: Buffer[]
receiver: string
refundVault: string
requestedAmount: bigint
to?: undefined
utxos: UTXO[]