Payout Formula
Exactly how a wallet's share of an epoch is calculated.
Per epoch#
holder_pot = Σ fees on the coin this epoch × 0.7// Top N: paid set = ranks 1..N at the snapshot// All holders: paid set = every holderif rank > N: payout = 0payout = holder_pot × balance ÷ Σ balance(paid set)7.2K × 2.5M ÷ 520M = 0.481% of the pot34.62
What the share is divided by#
The denominator is the balance of the wallets actually being paid, which is not the same in both modes:
Top NThe balances of ranks 1…N — the paid set only.
All holdersThe coin's whole supply, so every wallet's share is simply its share of supply.
The cutoff balance#
For a Top-N coin, the balance needed to be included is the balance of rank N at the snapshot. The coin page shows it as Balance to be included.
From a single trade#
fee = 10,000 × 0.02 // 100 ORBIOholders = fee × 0.7 // 70 ORBIOorbio_pool = fee × 0.25 // 25 ORBIOprotocol = fee × 0.05 // 5 ORBIO// a wallet with 2% of the paid set's combined balanceyours = holders × 0.02 // 1.40 ORBIO