Skip to content

Latest commit

 

History

History
21 lines (13 loc) · 1.13 KB

File metadata and controls

21 lines (13 loc) · 1.13 KB

UtxoSelectionFilters

Narrow the UTXO candidate pool. All specified filters are AND-ed together. This feature is currently in beta and might be subject to changes.

Properties

Name Type Description Notes
includeAllLabels List<String> Only include UTXOs that have ALL of these labels. [optional]
includeAnyLabels List<String> Only include UTXOs that have at least one of these labels. [optional]
excludeAnyLabels List<String> Exclude UTXOs that have any of these labels. [optional]
address String Only include UTXOs from this specific address. [optional]
minAmount String Minimum UTXO amount in the asset's base unit (e.g., BTC). [optional]
maxAmount String Maximum UTXO amount in the asset's base unit (e.g., BTC). [optional]
useChange Boolean Set to false to exclude change UTXOs. Default is true. [optional]
useCoinbase Boolean Set to false to exclude coinbase UTXOs. Default is true. [optional]