Rewards
ETH rewards for holders
1% of every trade accrues to holders in ETH/WETH, tracked with an O(1) magnified reward-per-share accumulator. Your share equals your eligible TRI balance ÷ total eligible supply, measured at the moment each distribution lands.
Your rewards
walletConnect a wallet to see your claimable rewards.
Rewards accrued (pending)
—ETH
+ — TRI awaiting conversion
Next distribution threshold
—ETH
Total distributed
—ETH
Total claimed
—ETH
Eligible supply
—TRI
Distributor
How distribution works
accounting- 1 Fees earmarked for rewards accumulate as ETH (from sells) and TRI (from buys) inside the hook.
- 2 A keeper calls
processRewards; TRI is swapped to ETH (slippage-bounded), everything is wrapped to WETH. - 3 Once the WETH total clears the threshold, one call folds it into
magnifiedRewardPerShare— no per-holder writes. - 4 Each holder’s claimable amount is derived on read;
claim()pays out WETH with checks-effects-interactions + a reentrancy guard.