Get Wallet UTXOs
ordnet_wallet_utxosRetrieve unspent transaction outputs (UTXOs) for a BSV address to manage spendable funds. Specify an address and limit to get txid, vout, and satoshis.
Instructions
Get unspent transaction outputs (UTXOs) for an address.
Args:
address (string, optional): BSV address. Uses wallet address if not provided.
limit (number): Maximum UTXOs to return (default: 5)
Returns: { utxos: [{ txid, vout, satoshis }], count: number }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of UTXOs to return (default: 5) | |
| address | No | BSV address to get UTXOs for. If not provided, uses the initialized wallet address. |