DOCUMENTATION
Everything you need to launch tokens, trade, stake, and build AI agents on DEEPTANK.
DEEPTANK is a fair-launch token launchpad on Base (Chain ID: 8453). Every token deployed gets 1 billion supply and immediate full-range Uniswap V3 liquidity. No bonding curves, no graduation mechanics, no presales.
Tokens have a configurable buy-side-only tax (1%–10%) that funds the platform, the creator, stakers, and anyone in the fee split. Sells are never taxed.
The entire lifecycle of a DEEPTANK token — from creation to reward distribution — is handled on-chain through four smart contracts working together.
Sets name, symbol, image, buy tax rate, and fee split recipients.
1B tokens minted, full-range LP created on Uniswap V3. LP NFT is burned to 0x...dEaD — liquidity is permanent and irrevocable.
Anyone can buy or sell. Buy transactions are taxed, sells are free.
Tax is swapped to WETH, then distributed: 20% platform, 80% per creator splits.
Launching is a single transaction. The TokenFactory contract deploys your token, creates the Uniswap V3 pool, adds liquidity, and burns the LP position — all in one call.
Token ownership is permanently renounced. No one — not even the creator — can modify the token, change the tax, or register new pools. The LP NFT is sent directly to 0x000...dEaD, burning it permanently. Liquidity can never be withdrawn — this is a rug-pull-proof design.
Want to buy your own token at launch? Use the swap panel on the token page right after deployment. Same interface as every other trader — fair for everyone.
All trading happens on Uniswap V3 through DEEPTANK's built-in swap panel. You can also trade directly through the Uniswap interface or any aggregator.
Send ETH, receive tokens minus buy tax. Tax is automatically deducted during the transfer.
Send tokens, receive ETH. No tax on sells — you get the full amount.
All pools use the 0.05% fee tier (Uniswap V3 pool fee = 500). Make sure your router calls use this fee tier when interacting directly with contracts.
Every buy transaction on a DEEPTANK token is taxed. The tax is collected in tokens, then swapped to WETH and distributed automatically.
The creator defines up to 5 recipients for the 80% creator portion. Each recipient gets a percentage (in basis points summing to 10,000). Common splits:
Anyone can trigger distribution by calling distribute(token) on FeeRouter. This is permissionless — the caller pays gas for the swap, but it benefits all recipients. The recommended pattern is distributeAndClaim() which distributes and claims in a single transaction.
Stake any DEEPTANK token to earn WETH rewards from that token's buy tax. The staking contract uses a MasterChef-style accumulator for gas-efficient, pro-rata reward distribution.
If no one is staking a token, the staking share of that token's fee split is redirected to the platform wallet until someone stakes.
DEEPTANK is built for autonomous agents. AI agents can launch tokens, trade, stake, and claim rewards — just like human users, but programmatically.
The skill.md file is a machine-readable integration guide that any AI agent can consume. It contains contract addresses, function signatures, parameter specs, and example workflows.
DEEPTANK consists of four core contracts deployed on Base. All contracts use Solidity ^0.8.20 with OpenZeppelin dependencies.
Deploys tokens, creates Uniswap V3 pools, burns LP NFT to 0x...dEaD.
0x07619c0739024e8e12A2280fC1d8918628B492AAERC-20 with buy-side tax. New instance deployed per token by the factory.
Collects buy tax, swaps to WETH, distributes to platform + creator splits.
0x457AF21162ED98253920a5435E4FC6487148d655Global staking contract. MasterChef-style WETH rewards from buy tax.
0x23D2DBC2e6Ef76fA2647E5d76a4BdE18Bf591803All contracts are deployed on Base Mainnet (Chain ID: 8453). LP NFTs are burned to 0x000...dEaD — liquidity is permanent and cannot be withdrawn by anyone. See skill.md for the full technical reference.
DEEPTANK is designed with safety as a priority. Here's what protects you:
Smart contracts are not yet audited. Use at your own risk. Always verify contract addresses before transacting.