Welcome to Just Bundle
Just Bundle is a token lifecycle console for the Pons launchpad on Robinhood Chain. One system takes a launch from an empty wallet set to a managed position: seed generation, bundle wallets, cross-chain funding via relay.link, the atomic launch, progressive buys, and exits.
Two parts
The web app at just-bundle.com/app — connect a wallet, sign in, and you get live market data for any Pons token: real curve prices, real trades, real holder tables, and real buy/sell through your own wallet.
The local engine — a Python service (bundler/server.py) that runs on your machine at 127.0.0.1:8787. It holds the encrypted wallet vault, executes the funding distribution, and signs every bundle transaction locally. When the app detects the engine, the full pipeline unlocks.
The pipeline
Bundle operations are gated. The launch wizard stays locked until the bundle is actually ready:
- Seed — a BIP-39 phrase, shown once, stored only encrypted.
- Wallets — X wallets derived locally; wallet 0 is the funder.
- Fund — send ETH to wallet 0 on a supported source chain.
- Window — pick how long distribution should take.
- Distribute — relay.link spreads the budget at randomized amounts and delays.
- Launch — atomic
launchAndBuyon Pons with snipe-tax exemptions for the bundle. - Exits — sell all, a portion, or a single wallet, at any time.
- Lock — stage sell approvals so an emergency exit never waits.
What it is not
Not a custodial service. Private keys never leave your machine. Not a hosted botnet — the engine is your laptop or server, and every signing action needs the vault unlocked plus an explicit execute flag.