Robinhood Chain · chain ID 4663

Pons bundler for Robinhood Chain

Launch a pons.family v2 token with launchAndBuy, exempt up to 32 wallets from the opening snipe tax, then buy the bonding curve in parallel.

How the Pons bundler works

Search results often call this a “Pons bundler bot.” On Robinhood Chain the sequencer is first-come, first-served. There is no Flashbots-style atomic bundle of many signers. This CLI does the flow Pons v2 actually allows.

  1. Create + first buy

    One launchAndBuy transaction deploys the token and curve and seeds the first fill. Nothing can trade between those two steps.

  2. Exempt your wallets

    Pass up to 32 addresses as snipeTaxExemptions. They skip the decaying ~99% opening tax. The list is fixed at creation.

  3. Parallel curve buys

    Those wallets pre-sign buy() and submit together. They are separate transactions aimed at the same launch window, not one mega-tx.

Launch a token on Pons with multiple wallets

Use this if you want to launch a token on Pons, run a multi-wallet Pons bundler, or keep snipers off the first fills on Robinhood Chain.

  • Pons v2 factory 0x7eD5…C7e
  • Launch-and-buy router 0xe33E…948
  • Default quote: native ETH (USDG also approved)
  • Dry-run simulates before you broadcast

Launch with the CLI

Local TypeScript CLI. Keys stay in .env and a gitignored wallets.json. Prefer a paid Robinhood Chain RPC.

npm install
cp .env.example .env
npm run pons -- status

npm run pons -- wallets generate --count 8 --out wallets.json
npm run pons -- wallets fund --file wallets.json --each 0.02

npm run pons -- launch \
  --name "Example" \
  --symbol EXMPL \
  --master-buy 0.1 \
  --file wallets.json \
  --each-buy 0.02 \
  --dry-run

Drop --dry-run to broadcast. Then buy, sell, and wallets sweep as needed.

Pons v2 contracts on Robinhood Chain

Role Address
Factory 0x7eD598BcEf8bd9Edd8C97A195C6d13f40801EC7e
Launch and buy 0xe33E9E479dF8802cb0866d5d05258bEc4cF62948

Public launching is gated. The CLI reads canLaunch before you spend gas. Official docs: docs.ponsfamily.com/v2.

Pons bundler FAQ

What is a Pons bundler?

A tool that launches a token on the Pons launchpad and buys from wallets you control in the opening window, so public snipers do not take the first fills.

Does this Pons bundler work on Robinhood Chain?

Yes. Mainnet chain ID 4663, live Pons v2 factory and launch-and-buy router.

Is this Pons v1 or Pons v2?

V2 only. Bonding curve, then a locked Uniswap v4 pool. The v1 Uniswap v3 factory is out of scope.

How many wallets can I bundle on Pons?

Up to 32 extra exemption wallets, plus the master launchAndBuy recipient.

Is a Pons bundle one atomic transaction?

No. Create plus the first buy is one transaction. Extra wallets send separate buys. Exemptions are what let them trade in the first seconds without the 99% snipe tax.

What is the Pons v2 snipe tax?

Buys in roughly the first five seconds pay a decaying tax that starts near 99%. The launcher, fee recipient, and listed exemption wallets skip it.