Token Infrastructure on HyperEVM

Tweet It.
Launch It.

Tag @DanubioHL on X with a ticker and name. Your token deploys on HyperEVM with permanent liquidity on KittenSwap. No wallet. No app. Just a tweet.

Tag @DanubioHL Trade on KittenSwap
$3K
Starting FDV
98%
Supply to Pool
2%
Creator Allocation
<$0.10
Launch Cost

How It Works

01
Tag @DanubioHL

Post on X: @DanubioHL launch $TICKER TokenName. Or launch directly from this page with a wallet.

02
Token Deploys

1B supply ERC-20 on HyperEVM. KittenSwap Algebra pool at $3K FDV. LP permanently locked in the LPLocker contract.

03
Instantly Tradeable

Live on KittenSwap. Trading fees flow to the protocol and creators. 2% creator allocation held for your X handle.

From Tweet
To Token

The bot monitors @DanubioHL mentions. When it detects a valid launch command, it deploys the token, creates the pool, locks the LP, and replies — all in under 15 seconds.

Thin liquidity at launch means early buys create sharp price action. That's the chart. That's the screenshot. That's the viral moment.

$ @DanubioHL launch $KPAIR KittenPaired

[PARSED] name="KittenPaired" symbol="KPAIR"
[LAUNCH] Deploying KPAIR...

[TX] 0xe339...0c0323
[CONFIRMED] Block 28958087
[TOKEN] 0xdb58...30fec9
[POOL] 0x1386...33c4c4
[LP NFT] #60225 → LPLocker ✓
[CREATOR] 20M KPAIR reserved

[SUCCESS] $KPAIR is live on KittenSwap
Gas: 0.0019 HYPE (~$0.06)

$

Live Tokens

Token Liquidity Volume 24H Fees 24H 24H
Fetching from DexScreener...

Token Details

Permanent Liquidity

LP NFT locked in the LPLocker contract forever. Liquidity can never be removed. No rug pulls.

Fee Collection

Trading fees accrue in the locked position and are collected by the protocol. Every swap generates revenue.

Creator Allocation

2% of supply (20M tokens) reserved for the creator. Claim by reaching out.

KITTEN Pairs

Tokens pair with KITTEN on KittenSwap. Every launch creates KITTEN buy pressure.

Ready to Launch?

Tweet or launch directly from your wallet.

@DanubioHL launch $TICKER YourTokenName
or

Agent Integration

Everything your AI agent needs to launch tokens on HyperEVM via Danubio. One contract call. No API keys. No approvals. Copy the SKILL.md or integrate the snippets below.

SKILL.md — Drop this file into your agent's skill directory. It contains all contracts, ABIs, workflows, and examples needed to launch and trade tokens autonomously.
Download SKILL.md

Quick Start — Launch a Token
Two lines. That's all your agent needs.
JavaScript
const launcher = new ethers.Contract( '0x2ccD3b07b105800480668C482625454E0e26ad27', ['function launch(string name, string symbol) external payable returns (address token, address pool)'], signer ); const tx = await launcher.launch('AgentToken', 'AGENT', { gasLimit: 10_000_000n }); const receipt = await tx.wait(); // Token deployed + pool created + LP locked. Done.
What Happens On-Chain
Flow
1. 1B supply ERC-20 deployed on HyperEVM 2. KittenSwap Algebra pool created (paired with KITTEN) 3. 980M tokens (98%) → single-sided liquidity at ~$3K FDV 4. LP NFT → LPLocker (permanent, cannot be withdrawn) 5. 20M tokens (2%) → caller's address 6. Trading fees accrue in locked LP → collectable by protocol Gas cost: ~9.5M gas ≈ 0.002 HYPE ≈ $0.06
Contract Addresses
HyperEVM — Chain ID 999 — RPC: https://rpc.hyperliquid.xyz/evm
ContractAddress
TokenLauncher (KITTEN)0x2ccD3b07b105800480668C482625454E0e26ad27
TokenLauncher (WHYPE)0x9005A8504069b1Bd94A98C64F447b93Ed742bF6c
KittenSwap Factory0x5f95E92c338e6453111Fc55ee66D4AafccE661A7
KittenSwap Router0x4e73E421480a7E0C24fB3c11019254edE194f736
KITTEN Token0x618275F8EFE54c2afa87bfB9F210A52F0fF89364
WHYPE0x5555555555555555555555555555555555555555
Buy a Launched Token
Approve KITTEN to the router, then swap via exactInputSingle.
JavaScript
const KITTEN = '0x618275F8EFE54c2afa87bfB9F210A52F0fF89364'; const ROUTER = '0x4e73E421480a7E0C24fB3c11019254edE194f736'; const TOKEN = '0x...'; // launched token address // 1. Approve await kitten.approve(ROUTER, ethers.MaxUint256); // 2. Determine price direction const tokenIsToken0 = TOKEN.toLowerCase() < KITTEN.toLowerCase(); const limitSqrtPrice = tokenIsToken0 ? 1461446703485210103287273052203988822378723970341n // MAX - 1 : 4295128740n; // MIN + 1 // 3. Swap await router.exactInputSingle({ tokenIn: KITTEN, tokenOut: TOKEN, deployer: ethers.ZeroAddress, recipient: wallet.address, deadline: Math.floor(Date.now() / 1000) + 300, amountIn: ethers.parseEther('1000'), // 1000 KITTEN amountOutMinimum: 0n, limitSqrtPrice, }, { gasLimit: 500_000n });
Parse Launch Events
Extract token and pool addresses from the transaction receipt.
JavaScript
const iface = new ethers.Interface([ 'event TokenLaunched(uint256 indexed launchId, address indexed token, address indexed pool, string handle, string name, string symbol, uint256 creatorAmount, uint256 nftId)' ]); for (const log of receipt.logs) { try { const parsed = iface.parseLog({ topics: log.topics, data: log.data }); if (parsed?.name === 'TokenLaunched') { console.log('Token:', parsed.args.token); console.log('Pool:', parsed.args.pool); } } catch {} }
Read All Launches
JavaScript
const count = await launcher.launchCount(); const launches = await launcher.getLaunches(0, count); launches.forEach(l => console.log(`$${l.symbol} — ${l.token}`));
Check Price via DexScreener
Free, no API key. Returns price, liquidity, volume, 24h change.
HTTP
GET https://api.dexscreener.com/token-pairs/v1/hyperevm/{tokenAddress}
Token Specifications
Specs
Standard: ERC-20 Total Supply: 1,000,000,000 (1B) Decimals: 18 Pool: 980,000,000 (98%) → KittenSwap Algebra Creator: 20,000,000 (2%) → caller's address LP: Permanently locked in LPLocker Starting FDV: ~$3,000 USD Quote Token: KITTEN Chain: HyperEVM (ID 999) Gas Cost: ~$0.06 per launch
Note: launch() is public — any address can call it. No launch fee currently. LP cannot be removed by anyone. The LPLocker contract has no withdraw function.