On the XRP Ledger, all values are internally represented in drops — the smallest indivisible unit of XRP. Understanding drops is essential for developers building on XRPL and for anyone who wants to understand the true precision of XRP's fee model.

The Drop Conversion Table

  • 1 XRP = 1,000,000 drops
  • 0.1 XRP = 100,000 drops
  • 0.01 XRP = 10,000 drops
  • 0.001 XRP = 1,000 drops
  • 0.0001 XRP = 100 drops
  • 0.00001 XRP = 10 drops (the minimum transaction fee)
  • 0.000001 XRP = 1 drop (the smallest possible XRP value)

Why Drops Matter for the 0.00001 XRP Fee

The minimum transaction fee on the XRP Ledger is 10 drops. In XRP notation that's 0.00001 XRP — hence the name of this site, 00001XRP. This fee is set at the protocol level and enforced by all validating nodes. Transactions offering fewer than 10 drops are rejected by the network before they are even considered for inclusion in a ledger.

During periods of high network load (approaching 200 transactions per ledger), the base fee can rise dynamically to throttle demand. When activity normalizes, the fee returns to the 10-drop minimum. This adaptive mechanism keeps the network stable without manual intervention.

Drops in Developer Context

All XRP Ledger APIs and libraries express amounts in drops to avoid floating-point precision errors. When you see a transaction fee listed as "10" in raw ledger data, that means 10 drops = 0.00001 XRP. Developers must always work in drops internally and only convert to XRP for display purposes:

  • JavaScript/TypeScript: use the xrpl.js library's dropsToXrp() and xrpToDrops() helpers
  • Python: use xrpl-py's conversion utilities
  • Java: use the xrpl4j library

The Deflationary Impact of Drops

Every 10-drop fee burned removes 0.00001 XRP from existence. Consider the math: if the XRPL processes just 1,000,000 transactions per day at the base fee, that's 10 XRP burned daily. Over a full year at that pace, 3,650 XRP is removed permanently. As usage scales — and Ripple's payment corridors, DeFi, and tokenization use cases grow — the annual burn rate increases proportionally, exerting long-term deflationary pressure on XRP's supply.

Close