How to find the DeDust pool
There are three reliable ways to get to a graduated token’s DeDust pool:- From the tonch token detail page. After graduation, the page shows a DeDust pool card with the pool address and a direct link to DeDust’s interface.
- From the indexer’s API:
GET /api/launches/<curve_address>returns thededust_poolfield once the migration finalizes. - From DeDust directly. The pool is a normal volatile TON/Jetton pool on DeDust v2. You can search for the Jetton by symbol or paste its master address into dedust.io.
Trading on DeDust
The post-graduation trading experience is identical to any other DeDust v2 Jetton pair:- Connect your TON wallet at dedust.io.
- Pick the Jetton from the swap interface (paste the master address if it doesn’t appear by name).
- Enter your trade amount, set slippage, sign the swap.
What’s locked, and what isn’t
| Component | After graduation |
|---|---|
| LP Jettons | Permanently locked in the LP locker contract — no withdrawal opcode |
| TON in pool | Locked in DeDust’s TON vault, only movable by trades through the pool |
| Reserved 200M Jettons | Now part of the pool’s reserves, removable only via DeDust trades |
| Original curve contract | Inert — buys/sells no longer accepted |
| Jetton master | Still functional for transfers, balances, total supply |
Why we lock the LP
A locked LP is a credible commitment that the pool can’t be drained by the deployer or operator. Without an LP lock, the deployer of the launchpad (or the deployer of an individual token) could remove all liquidity at any time, leaving holders with worthless tokens — a “rug pull”. With the LP locked permanently in a contract that has no withdrawal path, the only way liquidity decreases is if traders sell into the pool, which is the normal market dynamic. The locker contract’s source is verifiable on Tonviewer. It has exactly one accepted opcode:op::lock_lp, received via transfer_notification from the LP-Jetton wallet. Any other message — including any conceivable withdrawal attempt — bounces back to its sender.
Verifying the lock yourself
If you want to confirm the LP is locked for a specific token:- Get the LP locker address from the token’s API response:
GET /api/launches/<curve_address>→lp_locker_address. - Open Tonviewer at
https://tonviewer.com/<lp_locker_address>. - Read the contract’s source (verified) — confirm there’s no withdrawal opcode.
- Read its Jetton holdings — the LP Jetton balance should match the supply minted by the DeDust pool at graduation.