Sending XFG
Use thetransfer command inside simplewallet:
- address: The recipient’s Fuego address (starts with
fire). - amount: The amount of XFG to send.
- -p payment_id: Optional 64-character hex payment ID to attach to the transaction.
Complete send flow
Generate a payment ID (optional)
If the recipient requires a payment ID (for example, an exchange), generate one:Copy the resulting 64-character hex string.
Send the transaction
Run the transfer command with the recipient address and amount:To include a payment ID:
Receiving XFG
To receive funds, share your wallet address with the sender. Fuego addresses start withfire. You can display your address at any time from within simplewallet using the address command (or it is shown when the wallet opens).
Payment IDs
Payment IDs are 64-character hex strings that act as references attached to a transaction. They are commonly required by exchanges and merchants to match incoming deposits to a specific account or order.- Generate a new random payment ID with
payment_id. - Include it in a
transfercommand using the payment ID parameter. - The recipient can look up all transactions carrying that ID using
show_payments <payment_id>.
Integrated addresses
An integrated address combines a Fuego address and a payment ID into a single string. This simplifies the payment flow because the sender only needs one string instead of an address and a separate payment ID.simplewallet will automatically extract the payment ID from it when receiving funds.
Viewing transaction history
| Command | Description |
|---|---|
list_transfers | Show all transactions — both sent and received. |
show_incoming_transfers | Show only incoming transfers. |
show_payments <payment_id> | Show all transactions matching a specific payment ID. |
Transaction proofs
If you need to prove to a third party that a payment was made, use these commands:get_tx_proof— Produces a cryptographic proof that a specific transaction was sent to a given address.get_reserve_proof— Produces a proof that your wallet holds at least a specified balance.
Spendable age
Newly received outputs are not immediately spendable. Fuego requires 10 block confirmations before an output can be used as an input in a new transaction. With a block target of 480 seconds, this is approximately 80 minutes. Your wallet balance will show locked funds during this period.