simplewallet, the command-line wallet included with the node suite. Every Fuego address starts with the prefix fire, derived from the network’s Base58 prefix. The process takes only a few commands: open your wallet, verify your balance, and broadcast the transfer. This guide walks you through each step.
Open your wallet
Launch Enter your password when prompted. The wallet will sync with the daemon and display your current block height before dropping you into the interactive console.
simplewallet and point it at your wallet key file. If fuegod is running on the same machine you can omit the daemon flags; otherwise add --daemon-host and --daemon-port.Check your balance
At the The output shows your available balance (spendable now) and any locked balance (outputs waiting to mature). You need sufficient available balance to cover the amount plus the minimum fee of 0.008 XFG.
[wallet] prompt, run:Get the recipient's address
Ask the recipient for their Fuego address. All valid addresses begin with Example address format:
fire and are roughly 97 characters long. You can display your own address at any time with:Send the transfer
Use the For example, to send 10 XFG:The wallet displays the transaction fee (0.008 XFG, applied automatically) and asks you to confirm before broadcasting. The mixin is set to the network minimum of 2 automatically.
transfer command with the recipient address and amount:Confirm the transfer
Once the transaction is broadcast, verify it was sent:This prints a table of all outgoing and incoming transactions, including hash, amount, fee, and block height. Look for your transaction with a status of spent or confirmed.
After a transaction is included in a block, your newly received outputs are locked for 10 blocks (
CRYPTONOTE_DEFAULT_TX_SPENDABLE_AGE = 10) before they can be spent. At the 480-second block target, that is roughly 80 minutes. The locked amount will appear in your balance but will not be available to send until those blocks pass.Using payment IDs
Payment IDs let merchants and exchanges correlate a specific deposit to a customer or order. You can attach a payment ID to any transfer using the-p flag:
Integrated addresses
An integrated address encodes both the recipient’s address and a payment ID into a single string, making it impossible for the sender to forget to include the payment ID. Generate one from insidesimplewallet:
list_transfers will show the embedded payment ID alongside the transaction.