Built on the PONS ecosystem

Protocol

PonsMine is an on-chain mining protocol on Robinhood Chain. This website is the official frontend — one interface among many. The blockchain is the single source of truth.

How the stack fits together

Design philosophy

  • Blockchain is the source of truth. Round results and protocol state live on-chain — not in a private site database.
  • The official website is only one frontend. Use this site to view and interact; you are never locked into it.
  • Anyone may build. Use public smart contracts, addresses, ABIs, on-chain events, and public RPC — no special allowlist.

History

Every settled mining round becomes part of Robinhood Chain history. User-facing Round numbers count successful settles only and never reset on the same Mining deployment. Even if this website disappears, winners and prizes remain readable from the chain.

Build on public chain data

You do not need a private API. Read the chain — then build whatever interface you want.

Current protocol state
Mining contract public views (`status()`, phase, cooldown, totals, …)
Current / Next prize
`status()` → `locked` / `poolBalance` (see product docs)
Round history (settled)
`WinnerPaid` events · `blocks(roundNumber)` storage
Mining attempts
`Mined` events · `Expired` events (`requestId`)
Randomness (per settle)
`Randomized` events (value + seed / block hash)
Fee conversions
FeeSplitter `ConvertedEth` / `ConvertedPmine` events
Contract addresses
Official addresses (footer on this site after deploy)
Contract ABI
Public ABI published with the protocol (with addresses — not a private API)
Blockchain data
Public Robinhood Chain RPC

Optional convenience APIs (for example an Indexer for Merkle snapshots) may exist for operators — they are not required to read history or state from the chain. Holder lists at a past block may use public PMINE transfers plus published exclusion rules.

No private API is required.

Examples

  • Explorer
  • Dashboard
  • Analytics
  • Alternative frontend
  • Mobile app
  • Historical archive

Developer Resources

One place for builders. Addresses and ABIs appear here at launch — until then, everything else you need to plan against is listed below.

Contract Addresses
  • PONS Token
Contract ABI
Coming at launchPublic JSON ABI with the protocol release
Public RPC

Official public RPC endpoint for reading on-chain data.

https://rpc.mainnet.chain.robinhood.com
Chain ID
4663 · Robinhood Chain
Mining Power Exclusion Rules
Coming at launchFixed + LP auto-exclude + optional manual — full rules at launch
Event Reference
  • WinnerPaidWinner and prize payout (settled round)
  • MinedMining attempt that starts a round
  • ExpiredExpired mining request (no winner)
  • RandomizedRandomness used for that settle
  • ConvertedEthETH/WETH fees converted (80% → PONS pool, 20% → Creator)
  • ConvertedPminePMINE fees converted (80% → PONS pool, 20% → Creator ETH)

The official frontend is only one interface. Anyone can build on top of PonsMine.