Interface UnwrapResult

interface UnwrapResult {
    feeRefundOrLoss: bigint;
    fundingTransaction: string;
    psbt: string;
    utxos: UTXO[];
}

Properties

feeRefundOrLoss: bigint

The fee refund or loss.

If the amount is negative, it means that the user has to pay the difference. The difference is deducted from the amount.

If the amount is positive, it means that the user will be refunded the difference.

fundingTransaction: string
psbt: string
utxos: UTXO[]