Skip to main content
Version: Next

tx.selectionresult

Home > @blaze-cardano/tx > SelectionResult

SelectionResult type

The result of a coin selection operation. It includes the selected inputs, the total value of the selected inputs, and the remaining inputs.

Signature:

export type SelectionResult = {
leftoverInputs: TransactionUnspentOutput[];
selectedInputs: TransactionUnspentOutput[];
selectedValue: Value;
};