Beginner4 min read
How XRP Transactions Work
A simple walkthrough of what happens when XRP moves from one account to another.
30-Second Version
- A sender signs a transaction with their private key and submits it to the network.
- Servers share it, validators include it in a proposed ledger version, and consensus determines the final order.
- Once the ledger version is validated — typically within a few seconds — the transfer is final and cannot be reversed.
- A tiny fee is destroyed in the process, and the receiver's balance is updated in the same step.
Go Deeper
The journey of a payment
- 01
Sender
Signs the transaction with their private key.
- 02
XRPL
Servers relay it; validators propose a transaction set.
- 03
Validation
A supermajority agrees on order and outcome.
- 04
Receiver
Balance updates; the result is final.
What a transaction contains
- The sending account and a sequence number, which prevents replays and fixes ordering.
- The destination account, and sometimes a destination tag used by exchanges to identify a customer.
- The amount, and the fee the sender is willing to burn.
- A cryptographic signature proving the sender authorised it.
Why it settles quickly
Because consensus produces a definitive ledger version every few seconds, there is no probabilistic waiting period. A validated transaction is settled — not "settled after enough confirmations".
What can go wrong
- Sending to an unfunded account without meeting the reserve requirement will fail.
- Omitting a destination tag when an exchange requires one can delay or lose credit for a deposit.
- Failed transactions can still consume the fee, because network work was performed.