The XRP Ledger charges a tiny base fee for every transaction — and here's the key insight: that fee is never paid to any validator or miner. It's permanently destroyed.
What Is the XRP Ledger Base Fee?
The standard minimum transaction cost on the XRP Ledger is 0.00001 XRP, also expressed as 10 drops (where 1 XRP = 1,000,000 drops). At current XRP prices around $2.20, this equates to roughly $0.000022 per transaction — making XRPL one of the most cost-efficient blockchains for payments and settlements.
How Does Fee Scaling Work?
The base fee is not fixed under all conditions. Each rippled server maintains a load-based threshold. When a server experiences high transaction volume, the effective cost scales upward to protect the network from spam. The formula is:
Current Fee = base_fee_xrp × load_factor
The load_factor rises as demand exceeds server capacity. You can query the current fee using the server_info or fee RPC methods.
Fee Thresholds and Transaction Queuing
Every rippled server has two relevant thresholds:
- Load-based threshold: Transactions below this are rejected outright.
- Open ledger cost: Transactions above this are included in the current open ledger. Those between the two are queued for a later ledger.
Failed Transactions Still Pay Fees
An important edge case: even if your transaction fails (with a tec error code — "Transaction Engine: Claimed fee only"), the fee is still deducted. The XRP Ledger must maintain consistency, and failed transactions are included in validated ledgers with their fee burned.
Checking the Current Fee
Use the fee RPC method to query the open ledger cost in real time. The server_info method also exposes validated_ledger.base_fee_xrp and the current load_factor, allowing you to compute the exact fee before signing.
Key Takeaways
The XRPL transaction cost system is elegant in its simplicity: a tiny fee, burned permanently, that scales with network load. Sending $10 million worth of XRP costs the same as sending $1 — approximately $0.000022. This makes XRPL exceptionally well-suited for micropayments, cross-border remittances, and high-frequency applications.