TON Staking Made Easy — Stake your TON with one click.
Ttoni simplifies Tokamak Network staking for exchange holders. No MetaMask, no ETH gas fees, no WTON complexity. Just connect and earn ~35% APR seigniorage rewards.
Staking TON currently requires 8-15 steps: installing MetaMask, managing seed phrases, registering wallets on exchanges (Travel Rule), acquiring ETH for gas, understanding WTON wrapping (27 decimals), choosing among 10 operators, and navigating deprecated UIs.
Ttoni reduces this to 3 steps:
- Login — Sign in with Kakao/Google. Wallet created automatically.
- Transfer — Send TON from your exchange to your Ttoni address.
- Stake — One button. Gas paid in TON via EIP-7702 + Paymaster.
User (Social Login)
→ Privy SDK (EOA creation)
→ EIP-7702 (EOA → Smart Account delegation)
→ TON Paymaster (gas fees in TON, not ETH)
→ Tokamak Contracts (TON → WTON → DepositManager → SeigManager)
- L1-only: Staking contracts live on Ethereum L1. No L2 bridge needed.
- EIP-7702: EOA stays exchange-compatible (Travel Rule) while gaining Smart Account capabilities.
- TON Paymaster: Users never need ETH. Gas fees are deducted from their TON balance.
- Auto operator selection: Best operator chosen automatically based on commission rate and activity.
- Compound seigniorage: No restaking needed. Rewards compound automatically via coinage tokens.
| Layer | Technology |
|---|---|
| Frontend | Next.js 14, TypeScript, Tailwind CSS |
| Auth | Privy SDK (Kakao, Google OAuth) |
| Web3 | viem (EIP-7702 + UserOperation signing) |
| Bundler | Pimlico (EntryPoint v0.8) |
| Paymaster | Custom TonPaymaster (TON → ETH swap) |
| Contracts | Tokamak Network (TON, WTON, SeigManager, DepositManager) |
| Contract | Address |
|---|---|
| EntryPoint v0.8 | 0x4337084d9e255ff0702461cf8895ce9e3b5ff108 |
| TON | 0x2be5e8c109e2197D077D13A82dAead6a9b3433C5 |
| WTON | 0xc4A11aaf6ea915Ed7Ac194161d2fC9384F15bff2 |
| SeigManager | 0x0b55a0f463b6defb81c6063973763951712d0e5f |
| DepositManager | 0x0b58ca72b12f01fc05f8f252e226f3e2089bd00e |
| Contract | Purpose |
|---|---|
| TonPaymaster | Accept TON as gas payment, swap to ETH internally |
npm install
npm run devOpen http://localhost:3000.
A visual novel-style guided tutorial (/onboarding) that walks new users through 5 quests:
- Create Wallet — Privy social login (Kakao/Google) creates an embedded wallet
- Bridge to MetaMask — Export private key and import into MetaMask for exchange verification
- Upbit Verification — Register wallet address on Upbit (Travel Rule compliance)
- Receive First TON — Withdraw TON from Upbit to wallet
- First Gasless Stake — Stake TON without ETH gas fees
Each quest features Toki, an anime-style guide character with mood-based expressions, dialogue sequences, and XP progression.
A terminal-style boot sequence plays before Quest 1:
- Retro terminal typing effect on a cafe laptop scene
- Camera pans up to reveal the Toki character
- Click-to-skip supported at any phase
- TON Paymaster: Gas fees paid in TON, no ETH needed
- Session Key Delegation: Sign once, stake gaslessly for 7 days via MetaMask Delegation Toolkit
- Auto WTON Wrapping: TON -> WTON conversion handled automatically
Bilingual support (Korean/English) via custom LanguageProvider with locale files in src/locales/.
src/
app/ # Next.js App Router pages
components/
landing/ # Landing page (hero, how-it-works, FAQ, stats)
layout/ # Header, Footer
onboarding/ # Visual novel quest system + intro cinematic
dashboard/ # Staking panel + wallet management
providers/ # Privy, language, Web3 providers
ui/ # Reusable UI components
constants/ # Contract addresses, ABIs
hooks/ # useEip7702, useSessionKey
locales/ # en.ts, ko.ts (i18n strings)
lib/ # Utilities
MIT