not connected

How the pot works

A coin on Pons. Its trading fees fill a pot. Every buy resets a clock. When the clock hits zero, the last buyer takes most of the pot. Everything below is enforced by a contract with no owner.

00 The words

wordmeaning
PotETH held by the Pot contract, filled by the coin's fees, paid out when a round ends.
Clock. Every counted buy puts it back to the start. Zero ends the round.
Last buyerThe wallet of the most recent counted buy. Takes 80% of the pot when the clock hits zero.
Counted buyA buy of at least the minimum (0.02 ETH), through this site or anywhere else.
RoundFrom the first counted buy to the moment the clock hits zero and the pot is paid.
SeedThe 20% that stays in the pot to start the next round.
KeeperA bot run by the team that reports buys made outside this site to the contract.

01 What this is

A coin launched on Pons V2 (Robinhood Chain) like any other coin, with one difference: the creator fees do not go to a person. They go to a contract, the Pot, that nobody controls, and the Pot runs a game.

The game is the 2018 FOMO3D idea, stripped down: a clock, a pot, the last buyer wins. No keys to buy, no referral tree, no teams. You buy the coin, the clock resets, and if nobody buys for after you, the pot is yours.

02 Where the pot comes from

Every swap of the coin pays two fees, both set by Pons and visible on chain:

Fees accumulate in the Pons fee escrow under the Pot's name (before graduation they first sit on the bonding curve until Pons or the launch wallet sweeps them). Anyone can call harvest(): the contract pulls them in, sends the dev cut (20%) to the dev wallet, and adds the rest (80%) to the pot. Out of the dev cut, the keeper's gas wallet is topped up to a small fixed tank (0.02 ETH) so the bot pays for its own reports; the pot never pays for gas. The keeper does this automatically. The front page shows the pot plus the fees already collected and on their way; only what has reached the contract by the end of a round is paid in that round.

Example: 100,000 $ of trading (buys plus sells) with a 9% creator tax puts 9,700 $ into the contract: 1,940 $ to the dev, 7,760 $ to the pot.

Nobody puts money into the pot on purpose. It grows only from trading. The pot is not "the money of the last buyers": it is fees that would otherwise have gone to a creator's wallet.

03 How to play

Buy at least 0.02 ETH of the coin. Two ways:

Only what the market actually took counts. If a buy is partially filled (this happens on the last buy before graduation), the unfilled part comes back to you and only the filled part is measured against the minimum. Sells never touch the clock.

Your buys are real buys: you hold the coin and can sell it whenever you want. Winning the pot does not need you to hold anything.

04 The clock

05 The payout

When the clock is at zero, anyone can call endRound() (the keeper does it within seconds). The contract first harvests the fees waiting in the escrow, then pays:

shareto whom
80%the last buyer
20%stays in the pot as the seed of the next round

The payout is sent straight to the wallet, no claim needed. If the wallet is a contract that refuses ETH, the share is kept as a credit it can pull with withdraw(); the round closes either way. The list of the last ten buys on the front page shows who is in the race; only the last one is paid.

06 The keeper

The contract cannot see swaps that happen on Pons or Axiom. A bot run by the team, the keeper, watches the pool and reports every counted buy to the contract: recordBuy(buyer, amount, txHash). It also harvests fees and ends rounds, which anyone could do.

What the keeper can do: add a buyer to the round. What it cannot do: move any ETH, end a round early, stop the clock, report the same transaction twice, report the dev, or change any rule. Every report carries the hash of the swap it saw, so anyone can check it on Blockscout. The keeper's code is public.

If the keeper is down, buys from outside the site stop counting until it is back. Buys through the site never depend on it. If the keeper's key were ever stolen, the dev can rotate it; the thief could add buyers, nothing else.

07 What the dev can and cannot do

08 What does not exist

09 Risks, said plainly

10 Contracts

Pot: (chain ). Coin: . Both verified on Blockscout. In the contract the functions keep their technical names: buy, recordBuy, harvest, endRound, withdraw.

Parameters frozen at deployment: clock , minimum buy ETH, dev cut 20%, split 80 / 20.