← HomeLaunch dApp →
Whitepaper

SUITRUMP

Version 1.0 · April 2026 · Sui Mainnet

1. Introduction

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.


2. Token

NameSUITRUMP
SymbolSUITRUMP
BlockchainSui Mainnet
Decimals6
Total Supply10,000,000,000
Tax0% (buy and sell)
PresaleNone
Team AllocationNone
LaunchFair launch via MovePump, October 2024
LiquidityBurned (irrevocable)

The full coin type is 0xdeb831e796f16f8257681c0d5d4108fa94333060300b2459133a96631bf470b8::suitrump::SUITRUMP

Treasury

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.

Buy-and-Burn

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.


3. dApp Architecture

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.

Client-Side Transaction Construction

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.

Performance

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.


4. Features

Multi-DEX Aggregated Swap

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.

On-Chain Limit Orders

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.

Yield Farming

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).

Live Burn Tracker

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.

Holder Leaderboard

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:

TierMinimum
POTUSTop 5 holders
VERY VERY RICH460M
COMMANDER IN CHIEF322M
MAGA230M
BIG STRONG BOY180M
EPIC FURY150M
MAJOR PLAYER125M
ART OF THE DEAL100M
BIG LEAGUE50M
TREMENDOUS25M
PATRIOT5M
LOW ENERGY1M
FAKE NEWS0

SuiNS Raffle

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.

Weekly POTUS Announcement

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.

Upcoming: Trumpagotchi NFTs

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.

Upcoming: Token Staking

Direct SUITRUMP token staking with reward distribution is planned as a future feature.


5. Aggregator & Routing Engine

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.

Supported Venues

VenueTypeIntegration
SuiDexConstant product AMM (x*y=k)Direct on-chain pool reads via gRPC + AMM math
Cetus CLMMConcentrated liquidityDirect on-chain pool state reads (sqrtPrice, liquidity, feeRate) + CLMM math
7K ProtocolMeta-aggregator (Flowx, Cetus, OKX routing)External quote API

Quote Flow

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.

SuiDex Preference Bias

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.

Split Routing

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.

Multi-Hop Routing

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.

Execution

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.


6. SuiDex Protocol Integration

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.


7. Infrastructure

ComponentTechnology
BlockchainSui Mainnet
SDKSui SDK 2.0 — SuiGrpcClient (gRPC-web)
FrontendNext.js (App Router) + TypeScript
Wallet@mysten/dapp-kit (auto-connect)
HostingVercel (CDN edge caching)
IndexergRPC checkpoint streaming + MongoDB
Limit Order KeeperAutomated fill bot (PM2)
ChartsNoodles OHLCV API
ListingCoinGecko, DexScreener

8. Roadmap

Phase 1 — Launch (Complete)

Token deployment on Sui Mainnet. SuiDex liquidity pools live. Community and social launch. CoinGecko listing.

Phase 2 — Infrastructure (Complete)

Limit bot protecting SuiDex pools. Buy-and-burn mechanism live. SuiTrump LP Growth Plan. On-chain burn tracker.

Phase 3 — Growth (In Progress)

New website launch. Swap dApp on site. Zap into SuiDex farms. Auto compounder.

Phase 4 — Dominance

CEX listings outreach. SuiDex Sui chain aggregation. Sui ecosystem partnerships.

Phase 5 — Legacy

SUITRUMP as Sui's reserve meme. Perpetual burn toward zero supply. Trumpagotchi soul-bound NFTs. Token staking.


9. Links


Built by Richie Mischief · Active in DeFi since 2020 · Doxxed developer