Docs

Introduction

Jeeto is a Solana launchpad with one twist: every coin you deploy automatically stakes its trading fees through Jito. Instead of fees evaporating, they compound into a real, on-chain treasury denominated in JitoSOL.

A normal memecoin launch generates fees on every buy and sell — and then does nothing useful with them. Jeeto wires those fees directly into Jito liquid staking. The result is a token whose backing grows with its own volume, earning staking and MEV yield the entire time.

TL;DR — Launch a coin, choose how much of its fees to stake (default 100%), and Jeeto handles the rest: sweep → swap → stake → compound, automatically and non-custodially.

How fee-staking works

Every Jeeto coin is deployed with a small on-chain fee router attached. Whenever the token trades, the router intercepts the protocol fee and runs it through a fixed pipeline:

  1. Collect — the trading fee accrues in the router.
  2. Sweep & swap — past a small threshold, the balance is swapped to SOL via Jupiter for best execution.
  3. Stake — the SOL is deposited into Jito's stake pool, minting JitoSOL to the coin's treasury.
  4. Compound — JitoSOL appreciates as staking and MEV rewards accrue; nothing needs to be claimed.
// simplified fee-router flow (per trade)
fee      = trade.amount * FEE_BPS / 10_000
treasury.collect(fee)

if treasury.pending >= SWEEP_THRESHOLD:
    sol     = jupiter.swap(treasury.pending, "SOL")
    jitoSOL = jito.stake(sol * STAKE_PCT)   // set at launch
    creator.send(sol * (1 - STAKE_PCT))
    treasury.deposit(jitoSOL)

The router is set at creation and the mint authority is revoked, so the fee logic can't be changed or rugged after launch.

Quickstart

Launching takes about a minute. Full walkthrough on the Launch page.

  1. Open Launch and connect a Solana wallet.
  2. Enter a name, ticker and image.
  3. Set Fees staked (0–100%). Leave at 100% to stake everything.
  4. Click Deploy and approve the transaction (~0.02 SOL).
  5. Done — your coin is tradeable and its fees stake from the first trade.

Fees & the split

Jeeto charges a flat trading fee on each swap. You decide, at launch, how that fee is divided between your staked treasury and your creator wallet.

ParameterDefaultRange
Trading fee1.0%fixed
Staked to treasury100%0–100%
To creator wallet0%0–100%
Sweep threshold0.25 SOLfixed

Example: at $82k daily volume and a 1% fee, ~$820/day flows through the router. With the split at 100%, all of it is staked into JitoSOL.

JitoSOL & yield

JitoSOL is Jito's liquid-staking token. Holding it earns two things at once:

Yield accrues by JitoSOL's exchange rate rising versus SOL — so the treasury's value grows even though the JitoSOL balance stays the same. There's nothing to claim and nothing to restake.

Treasury

The staked JitoSOL lives in a treasury wallet tied to your coin. You choose the policy at launch:

Policy is enforced on-chain. Whatever you pick, the staking never stops unless you change the split.

Unstaking

Because the treasury holds JitoSOL rather than native stake, it stays fully liquid:

No multi-day cooldown is required to access the value — that's the advantage of liquid staking over locking native stake.

FAQ

Is Jeeto custodial?

No. You sign every action with your own wallet, and the fee router runs on-chain. Jeeto never holds your keys or your treasury.

Can the fee split change after launch?

The split is configured at deploy. Depending on the policy you choose it can be locked permanently or adjusted by your treasury authority — but the staking pipeline itself can't be removed.

What if volume is low?

Fees only stake once they cross the sweep threshold, so low volume simply means slower accumulation. Nothing is lost — pending fees stake on the next sweep.

Do holders earn the yield directly?

Yield accrues to the coin's treasury, not to individual wallets. How that benefits holders depends on the treasury policy set at launch.

Is this affiliated with Jito?

No. Jeeto is an independent project that integrates Jito's public liquid-staking pool. It is not affiliated with or endorsed by the Jito Foundation.