-
Notifications
You must be signed in to change notification settings - Fork 31
address send Command Guide
Enrico Rubboli edited this page Apr 10, 2026
·
1 revision
Send a given coin amount to a given address. The wallet will automatically calculate the required fees.
Optionally, you can also specify the UTXOs to be used.
address-send <ADDRESS> <AMOUNT> [UTXOS]...
-
<ADDRESS>: The receiving address of the coins. -
<AMOUNT>: The amount to send, in decimal format (e.g.1.5). -
[UTXOS]...: (Optional) Specific UTXOs to spend, space-separated. A UTXO can be from a transaction output or a block reward output:- Transaction output:
tx(<txid>,<index>) - Block reward output:
block(<block_id>,<index>)
- Transaction output:
# Send 10 coins to an address
address-send <address> 10
# Send 0.5 coins using a specific UTXO
address-send <address> 0.5 tx(000000000000000000059fa50103b9683e51e5aba83b8a34c9b98ce67d66136c,1)
# Send using multiple specific UTXOs
address-send <address> 5 tx(000000000000000000059fa50103b9683e51e5aba83b8a34c9b98ce67d66136c,1) block(000000000000000000059fa50103b9683e51e5aba83b8a34c9b98ce67d66136c,2)
- Home
- Installing Mintlayer
- Upgrade Mintlayer
- Node
- Addresses
- Wallet CLI
- Wallet RPC
- API
- Advanced Tools
- Guides
- CHANGELOG