interface BitcoinTransactionPrepareResult {
    changeAmount: bigint;
    estimatedVSize: number;
    fee: bigint;
    inputs: UTXOSpendable[];
    opReturnScripts?: Uint8Array<ArrayBufferLike>[];
    recipients: Recipient[];
}

Properties

changeAmount: bigint
estimatedVSize: number
fee: bigint
inputs: UTXOSpendable[]
opReturnScripts?: Uint8Array<ArrayBufferLike>[]
recipients: Recipient[]