XRP to Drops Converter
Convert between XRP and drops, the smallest unit on the XRP Ledger. Enter any value and the conversion updates instantly, with the live USD price for reference.
XRP and Drops Explained
The XRP Ledger records every amount in drops, where 1 XRP = 1,000,000 drops. Drops keep on-ledger accounting exact by using integers instead of decimals. You will encounter drops when reading raw ledger data, setting transaction amounts in code, or working with the XRP Ledger APIs.
- 1 drop = 0.000001 XRP (the smallest possible amount)
- 1 XRP = 1,000,000 drops
- Transaction amounts in
xrpl.jsare specified in drops as strings
Frequently Asked Questions
How many drops are in 1 XRP?
Exactly 1,000,000 drops make up 1 XRP. The drop is the smallest unit of XRP on the XRP Ledger, so one drop is 0.000001 XRP.
What is a drop in XRP?
A drop is the base unit of value on the XRP Ledger. All amounts, balances, and fees are recorded internally in drops as integers to avoid floating-point rounding errors. Wallets convert to XRP for display.
How do I convert XRP to drops?
Multiply the XRP amount by 1,000,000. For example, 2.5 XRP = 2,500,000 drops. To go the other way, divide the number of drops by 1,000,000.
Why does the XRP Ledger use drops?
Using integer drops as the base unit guarantees exact accounting on-chain. It is the same reason Bitcoin uses satoshis and Ethereum uses wei — integers prevent precision errors that floating-point numbers introduce.