Interface CoinSelectorResult

Represents the result of a coin selection operation.

interface CoinSelectorResult {
    remaining: UTxO[];
    selection: UTxO[];
}

Properties

Properties

remaining: UTxO[]

The remaining UTxOs from the original available set that were not selected.

selection: UTxO[]

The set of UTxOs selected to meet or exceed the target value.