$0.00 sent to waiting for first token

Route Pons v2 fees to X-linked wallets

Point a Pons v2 tax token's creator fees at any X handle. Sell-tax ETH is routed to configured wallets on Robinhood Chain — one factory, one receiver per token, no discretion.

Fee lifecycle Automatic
1
Trade fires on Pons v2
Creator tax is taken on the swap and sent as ETH.
2
Receiver takes the ETH
A dedicated TokenFeeReceiver holds one token's fees.
3
Splits settle on arrival
Basis-point shares are computed in the same transaction.
4
Wallets get paid
Sent automatically. Anything that fails stays claimable.
Explore
No tokens registered yet
Launch one and it appears here within a block.
Payments
No payments yet
Fee events show up as soon as a token trades.
Fees · 30D
0.00 ETH
Total tax ETH routed
Paying Out
No shares configured
Tokens
0
Registered fee receivers
Explore
Every token with Pons v2 fee routing registered on Robinhood Chain.
Registered tokens
Live from chain
No tokens registered yet
The factory registry is empty. Launch the first token.
Payments
Live feed of fee arrivals, settlements, and payouts to configured wallets.
Event feed
Indexed on-chain
No payments yet
Deploy a receiver and trigger a Pons v2 tax flow.
Analytics
Fee routing volume over time and a per-token breakdown.
Fees · 1D
0.00 ETH
Last 24 hours
Fees · 30D
0.00 ETH
Trailing month
All Time
0.00 ETH
Since first receiver
Fee volume
30 days
30D AGO15D AGOTODAY
Daily totals from indexed FeeReceived events.
Per-token breakdown
No data yet
Breakdown fills in once fees start routing.
Launch
Deploy a Pons v2 token whose creator tax auto-distributes to the wallets you set.
Loading launch params…
Token
Creator tax
Taken on each trade and auto-distributed. 100 = 1% · 500 = 5% · 1000 = 10% max.
Shareholders
Requires a connected wallet on Robinhood Chain (4663).
Docs
How PonsPaid fee routing works on Robinhood Chain.

Overview

PonsPaid launches Pons v2 tax tokens with auto-distributing fee routing. When a trade happens on a launched token, the creator tax is sent to a per-token TokenFeeReceiver. The receiver splits that ETH across every configured shareholder in the same transaction — there is nothing to claim.

Architecture

PonsPaidFactory deploys one TokenFeeReceiver per launch, and the Pons v2 creatorFeeRecipient is set to that receiver at launch time. The factory doubles as the on-chain registry, so this interface reads its token list directly from chain rather than from a database.

Fee flow

  1. A trade fires on Pons v2 and the creator tax is forwarded to the receiver's receive() function.
  2. receive() settles every shareholder's basis-point share and sends it with a bounded gas stipend.
  3. Any transfer that fails is recorded in claimable[] so the recipient can still withdraw it.
  4. If the inbound call arrives with too little gas to distribute, the ETH is held as pending and distributePending() can be called by anyone.

Share configuration

Shares are set per token, in basis points, and must sum to exactly 10,000. X handles are stored as a hash for display only — the wallet address is what actually receives ETH.

FieldTypeDescription
walletaddressPayout destination on Robinhood Chain
bpsuint16Share in basis points (5000 = 50%)
handleHashbytes32keccak256 of the X handle, metadata only

Security

  • nonReentrant guards every distribution and claim path.
  • Outbound sends use a capped gas stipend, so one hostile recipient cannot block the rest.
  • Shares must sum to exactly 10,000 bps, with a maximum of 16 shareholders per token.
  • Token binding is one-time and immutable once set.
  • Rounding dust carries forward to the next settlement instead of being stranded.
  • The admin can pause distribution but cannot move claimable balances.

Limitations

This routes ETH to wallets on Robinhood Chain. It does not settle X Money dollar payouts — X handles are identity metadata, and the wallet address is what receives funds. Front-running the gap between receiver deployment and token binding is not yet access-controlled, so treat binding as time-sensitive.

ponsmoney.com PONS V2 · ROBINHOOD CHAIN · EVM 4663