Version 1.0 · April 2026 · Sui Mainnet
SUITRUMP is a community-driven meme token on Sui Mainnet, launched October 2024 via MovePump fair launch. All 10 billion tokens entered public circulation from day one with zero tax, no presale, and no team allocation. The project is built and operated by Richie Mischief, a doxxed developer active in DeFi since 2020.
The suitrump.com dApp is a Sui 2.0 native frontend built entirely on the modern gRPC SDK stack. It is the first third-party application integrated with the SuiDex decentralized exchange protocol, providing direct access to SuiDex AMM pools, yield farms, and liquidity management alongside multi-DEX aggregation.
| Name | SUITRUMP |
| Symbol | SUITRUMP |
| Blockchain | Sui Mainnet |
| Decimals | 6 |
| Total Supply | 10,000,000,000 |
| Tax | 0% (buy and sell) |
| Presale | None |
| Team Allocation | None |
| Launch | Fair launch via MovePump, October 2024 |
| Liquidity | Burned (irrevocable) |
The full coin type is 0xdeb831e796f16f8257681c0d5d4108fa94333060300b2459133a96631bf470b8::suitrump::SUITRUMP
The treasury allocation was acquired after launch through founder-funded open market purchases. No tokens were reserved, minted, or pre-allocated at launch. Treasury holdings are tracked in real-time on the suitrump.com tokenomics page using indexed on-chain data.
A perpetual buy-and-burn mechanism reduces circulating supply over time. Burns are executed on-chain and tracked live via the burn tracker on suitrump.com. Supply only moves in one direction: down.
The suitrump.com dApp is built on Next.js with the Sui SDK 2.0 gRPC stack. All chain interactions use SuiGrpcClient via gRPC-web — zero JSON-RPC dependency, fully prepared for the July 2026 deprecation.
All user transactions (swap, zap, stake, unstake, claim, limit order) are constructed as Programmable Transaction Blocks (PTBs) directly in the browser. The backend provides route data and quotes; the frontend builds and submits transactions. Users sign only what they can inspect — no opaque server-built transactions.
The dApp is optimized for scale with CDN edge caching on all public API endpoints, tab-aware polling (only the active tab fetches data), browser visibility pause (polling stops when the tab is backgrounded), and batch endpoints that combine multiple data requests into single CDN-cached responses.
Swap any Sui token with routes aggregated across SuiDex, Cetus CLMM, and 7K Protocol. The routing engine evaluates direct, 2-hop, and 3-hop paths to find the best execution price. Split routing via ternary search optimization is used for large swaps to minimize price impact. See Section 5 for full aggregator details.
Place limit buy and limit sell orders against SuiDex pools. Orders are stored on-chain and filled automatically by an automated keeper when the target price is reached. Users retain full custody and can cancel at any time before execution.
Stake LP tokens in SuiDex farms to earn VICTORY token rewards. The dApp supports single-sided ZAP IN (deposit one token, auto-swap and add balanced liquidity in one transaction), direct LP staking, reward claiming, and one-click compound (claim + zap back into the farm).
Real-time on-chain burn data showing total tokens burned, burn transactions, and the impact on circulating supply. Data is sourced from on-chain reads via gRPC proxied through the backend for consistency.
Real-time rankings of SUITRUMP holders indexed from three on-chain sources: direct wallet balances, SuiDex LP positions (including farm-staked LP), and Cetus CLMM concentrated liquidity positions. Holders are assigned Trump-themed tiers based on total exposure:
| Tier | Minimum |
|---|---|
| POTUS | Top 5 holders |
| VERY VERY RICH | 460M |
| COMMANDER IN CHIEF | 322M |
| MAGA | 230M |
| BIG STRONG BOY | 180M |
| EPIC FURY | 150M |
| MAJOR PLAYER | 125M |
| ART OF THE DEAL | 100M |
| BIG LEAGUE | 50M |
| TREMENDOUS | 25M |
| PATRIOT | 5M |
| LOW ENERGY | 1M |
| FAKE NEWS | 0 |
Holders earn raffle tickets based on their SUITRUMP holdings. Raffles are run on demand and award SUI prizes. Ticket calculation is proportional to holdings with a formula designed to reward long-term accumulation. The raffle runs on the backend with results and live countdowns displayed in the dApp.
Every Monday at 9:00 AM ET, the dApp announces the current top 5 POTUS holders with their SuiNS names and holdings. Users can share the announcement directly to X (Twitter) with one click.
A soul-bound NFT system built on Sui's object model. Trumpagotchi are interactive, upgradeable, tier-based NFTs tied to the holder's SUITRUMP position. Leveraging Sui's unique owned-object architecture, each Trumpagotchi is a living on-chain object that evolves based on the user's holdings — not a static image with metadata.
Direct SUITRUMP token staking with reward distribution is planned as a future feature.
The dApp runs its own swap routing engine that aggregates liquidity across multiple Sui DEXes to find the best execution price for every trade. All routing logic runs server-side with results served to the frontend for client-side PTB construction.
| Venue | Type | Integration |
|---|---|---|
| SuiDex | Constant product AMM (x*y=k) | Direct on-chain pool reads via gRPC + AMM math |
| Cetus CLMM | Concentrated liquidity | Direct on-chain pool state reads (sqrtPrice, liquidity, feeRate) + CLMM math |
| 7K Protocol | Meta-aggregator (Flowx, Cetus, OKX routing) | External quote API |
When a user enters a swap amount, the routing engine runs in parallel:
All venue quotes are returned within a single API response with the best route highlighted.
To encourage native liquidity growth, external venues must beat SuiDex by more than 20 basis points (0.2%) to be selected as the preferred route. If SuiDex is within 0.2% of the best external quote, SuiDex is chosen. 7K quotes are discounted by 2% before comparison as their builder applies additional fees at execution time.
For large swaps where routing 100% through a single venue would cause significant price impact, the engine splits the input across two venues to maximize combined output. A ternary search optimizer (50 iterations) finds the optimal split ratio:
optimalSplit = argmax(venueA_out(s%) + venueB_out((1-s)%))
Split routing is evaluated for SuiDex + Cetus and SuiDex + other venue combinations. The split result is only used if it beats the best single-venue quote.
When no direct pool exists between two tokens, the engine discovers intermediate tokens to complete the swap in multiple hops. For example: TREE → SUI → SUITRUMP. All hops execute atomically in a single Programmable Transaction Block. Slippage protection is applied only on the final hop — intermediate hops use zero minimum to avoid unnecessary reverts.
After the user selects a route, the frontend constructs the PTB client-side. For split routes, both legs are included in a single atomic transaction — the last leg receives the full remaining coin balance (not a calculated split amount) to prevent BigInt rounding dust that would trigger a Move abort. The transaction is signed by the user's wallet and submitted directly to Sui Mainnet.
suitrump.com is the first third-party frontend built on the SuiDex decentralized exchange protocol. The integration covers the full SuiDex contract surface:
All SuiDex contract interactions use the live mainnet deployment. The dApp reads pool reserves, farm positions, and reward accumulators directly from on-chain objects via gRPC, with an indexer pipeline providing aggregated metrics and historical data.
| Component | Technology |
|---|---|
| Blockchain | Sui Mainnet |
| SDK | Sui SDK 2.0 — SuiGrpcClient (gRPC-web) |
| Frontend | Next.js (App Router) + TypeScript |
| Wallet | @mysten/dapp-kit (auto-connect) |
| Hosting | Vercel (CDN edge caching) |
| Indexer | gRPC checkpoint streaming + MongoDB |
| Limit Order Keeper | Automated fill bot (PM2) |
| Charts | Noodles OHLCV API |
| Listing | CoinGecko, DexScreener |
Token deployment on Sui Mainnet. SuiDex liquidity pools live. Community and social launch. CoinGecko listing.
Limit bot protecting SuiDex pools. Buy-and-burn mechanism live. SuiTrump LP Growth Plan. On-chain burn tracker.
New website launch. Swap dApp on site. Zap into SuiDex farms. Auto compounder.
CEX listings outreach. SuiDex Sui chain aggregation. Sui ecosystem partnerships.
SUITRUMP as Sui's reserve meme. Perpetual burn toward zero supply. Trumpagotchi soul-bound NFTs. Token staking.
Built by Richie Mischief · Active in DeFi since 2020 · Doxxed developer