Token Overview
NOX is the native utility token powering the 0xNOX launchpad ecosystem. It serves as the primary currency for token creation fees, staking rewards, and cross-chain bridging between Ethereum and Cellframe networks.
Choose a token from the list to view its chart and trade
Deploy an ERC-20 token with instant liquidity via bonding curves. Automatic graduation to Uniswap V2 at $69,420 market cap.
Token launches instantly with bonding curve
Buy & sell with instant liquidity, 1% fee
Auto-migrates to Uniswap at $69,420
LP tokens burned, liquidity locked forever
Token-embedded applications for NONOS. Install apps powered by your favorite tokens.
Build, sign, and publish NOXC capsules for the NONOS marketplace. Complete toolkit for creating sandboxed applications with blockchain licensing.
0xB47F...78D70x0a26...9eCABuild a complete .noxc capsule binary with manifest, executable, assets, and Ed25519 signature.
Select the capabilities your capsule requires. These are enforced by the sandbox at runtime.
0x0000000000000000
---Register your capsule on the Ethereum mainnet CapsuleRegistry contract. Users can then purchase unlock tokens with NOX.
0xB47FBd4E668faD29C374523B1f7F82EA8ba178D70x43584F4E0x000164 bytesEd25519 (64B)[Header 64B] Magic: 4B Version: 2B Manifest Offset: 4B Manifest Size: 4B Binary Offset: 4B Binary Size: 4B Assets Offset: 4B Assets Size: 4B Sig Offset: 4B Reserved: 30B [Manifest JSON] [ELF Binary] [Assets (opt)] [Ed25519 Sig 64B]
{
"id": "bytes32",
"name": "string",
"version": "string",
"description": "string",
"dev_addr": "0x...",
"dev_pubkey": "base64",
"caps": "u64",
"mem_min": "u64",
"mem_max": "u64",
"price": "u256 (wei)",
"category": "string"
}
When users purchase a capsule, they receive an UnlockToken valid for 24 hours:
UnlockRecord {
token: bytes32
timestamp: u64
expiresAt: u64
approvedCaps: bytes32
}
Duration: 24 hours
Token = keccak256(
capsuleId,
user,
blockhash,
timestamp,
nonce
)
Ed25519 keys are used to cryptographically sign your capsules. The public key is embedded in the manifest, and the signature covers the entire capsule (minus signature itself).
For production use, export keys and store them securely offline. Never share your private keys.
Lost keys cannot be recovered. Export and store backups in multiple secure locations.
This guide walks you through building and publishing your first NONOS capsule.
Navigate to the Key Management tab and generate a new Ed25519 keypair. This will be used to sign your capsule.
// Keys are generated using WebCrypto API // Public key is 32 bytes, embedded in manifest // Private key is 64 bytes (seed + public)
Fill out the manifest form in the Capsule Builder tab. Required fields:
Upload your compiled ELF binary. The binary will be included in the capsule and executed in the NONOS sandbox.
Click "Build & Sign .noxc" to create your capsule. This combines:
Upload your .noxc file to IPFS using Pinata, Infura, or Web3.Storage. Save the CID.
Register your capsule on the Ethereum mainnet CapsuleRegistry contract. This makes it available in the NONOS marketplace.
Capsules run in a sandboxed environment with explicit capability-based permissions. Each capability is represented as a bit in a 64-bit bitmap.
| Bit | Name | Description |
|---|---|---|
| 0 | CAP_NET_TCP_OUT | Outbound TCP connections |
| 1 | CAP_NET_TCP_LISTEN | Listen on TCP ports |
| 2 | CAP_NET_UDP | UDP socket operations |
| 3 | CAP_NET_RAW | Raw socket access |
| 4 | CAP_NET_DNS | DNS resolution |
| 9 | CAP_STORAGE_IPFS_READ | Read from IPFS |
| 10 | CAP_STORAGE_IPFS_WRITE | Write to IPFS |
| 24 | CAP_GPU_RENDER | GPU rendering access |
| 25 | CAP_GPU_COMPUTE | GPU compute shaders |
| 32 | CAP_WALLET_SIGN | Sign transactions |
| 33 | CAP_WALLET_ENCRYPT | Encrypt/decrypt data |
| 34 | CAP_WALLET_BALANCE | Query wallet balance |
| 35 | CAP_WALLET_SEND | Send transactions |
The NONOS marketplace is powered by smart contracts on Ethereum mainnet.
| CapsuleRegistry | 0xB47FBd4E668faD29C374523B1f7F82EA8ba178D7 |
| NOX Token | 0x0a26c80Be4E060e688d7C23aDdB92cBb5D2C9eCA |
| RevenueSplitter | 0x0FbfFdbc658b88Bc741B7a183FbD634deA63C93c |
| RewardPool | 0xF3A4bAc4629Aab574731EDf5A78f4ec4FA142079 |
When a user purchases a capsule unlock:
// Create a new capsule listing function createCapsule( address token, // Payment token (NOX) string name, // Capsule name string ipfsHash, // IPFS CID uint256 price // Price in wei ) returns (uint256 capsuleId) // Unlock (purchase) a capsule function unlockCapsule( uint256 capsuleId ) external // Check if user has unlocked function hasUnlocked( address user, uint256 capsuleId ) view returns (bool)
When a user purchases a capsule, the smart contract generates an UnlockToken valid for 24 hours.
token = keccak256(
abi.encodePacked(
capsuleId,
user,
blockhash(block.number - 1),
block.timestamp,
nonce
)
)
struct UnlockRecord {
bytes32 token; // Unique token
uint64 timestamp; // When unlock occurred
uint64 expiresAt; // timestamp + 86400 (24h)
bytes32 approvedCaps; // Capabilities bitmap
}
getUnlockRecord(capsuleId, wallet)now < expiresAt)approvedCapsTrack your token performance and earnings
Created by
Exclusive NFT pass for 0xNOX ecosystem benefits and revenue sharing.
Connect your wallet to check ZeroState Pass ownership
Create unlimited tokens without paying the 10,000 NOX creation fee. Save thousands on every launch.
Pay only 0.5% trading fee instead of 1% on all bonding curve trades.
Receive up to 2.5x multiplier on staking rewards when combined with lock periods.
Earn 5% of all protocol fees distributed to NFT holders proportionally.
NFT holders can claim staking rewards daily instead of weekly.
Vote on protocol parameters including fees, burn ratios, and feature proposals.
Join the exclusive club of NFT holders and unlock all premium features.
Transfer NOX tokens between Ethereum and Cellframe networks securely.
Connect your Ethereum wallet to bridge NOX tokens
Understanding the economic model behind the NOX ecosystem
NOX is the native utility token powering the 0xNOX launchpad ecosystem. It serves as the primary currency for token creation fees, staking rewards, and cross-chain bridging between Ethereum and Cellframe networks.
| Allocation | Amount | Purpose |
|---|---|---|
| Fair Launch | 600,000,000 NOX (75%) | Public distribution |
| Liquidity | 32,000,000 NOX (4%) | DEX liquidity provision |
| Staking Rewards | 32,000,000 NOX (4%) | Staking vault emissions |
| CEX Listings | 32,000,000 NOX (4%) | Exchange listings |
| DAO Treasury | 24,000,000 NOX (3%) | Governance treasury |
| Development | 24,000,000 NOX (3%) | Protocol development |
| Contributors | 24,000,000 NOX (3%) | Team & advisors |
| Marketing | 20,000,000 NOX (2.5%) | Growth initiatives |
| NFT Holders | 12,000,000 NOX (1.5%) | ZeroState Pass rewards |
Every token launched on 0xNOX uses an exponential bonding curve that determines price based on supply:
Price = BasePrice * e^(k * Supply)
When a token reaches a market cap of $69,420, it automatically graduates to Uniswap V3:
| Action | Fee | Distribution |
|---|---|---|
| NOX Buy/Sell | 2% | 10% burn, 40% liquidity, 20% DAO, 30% dev |
| Token Creation | 10,000 NOX | Protocol treasury |
| Launchpad Trading | 1% | Protocol treasury |
| Bridge Transfer | 0.25% | Bridge liquidity pool |
| Capsule Unlock | Variable | 68% dev, 30% NFT holders, 2% protocol |
ZeroState Pass holders enjoy FREE token creation - no NOX fee required.
Stake your NOX tokens to earn a share of protocol fees and emissions:
The NOX Bridge enables seamless transfers between Ethereum and Cellframe networks:
Complete guide to launching and trading tokens on 0xNOX
0xNOX is an anonymous token launchpad on Ethereum. Launch your own token in seconds with automatic bonding curves and Uniswap graduation.
Use MetaMask, WalletConnect, or generate a new wallet instantly
Launch your own token or trade existing tokens on bonding curves
Tokens graduate to Uniswap when they reach $69,420 market cap
Every token has a bonding curve that provides instant liquidity:
Use MetaMask, Rabby, or any Web3 wallet:
Connect mobile wallets via QR code:
Create a wallet instantly, no extensions needed:
Transfer NOX between Ethereum and Cellframe networks:
Generate a Cellframe wallet directly from the bridge:
Capsules are token-embedded applications for the NONOS operating system:
Yes, 0xNOX is deployed on Ethereum mainnet. All transactions use real ETH and real tokens.
At $69,420 market cap, the token automatically graduates. ETH and tokens are sent to Uniswap, LP tokens are burned, and the token becomes freely tradeable on DEXes.
No. All liquidity is locked in the bonding curve contract until graduation. There are no admin keys or special permissions that allow draining funds.
NOX is available on Uniswap. You can also earn NOX through staking rewards or by creating popular tokens on the platform.
ZeroState Pass is an NFT that grants free token creation on 0xNOX, plus boosted staking rewards and exclusive features.
MetaMask, Rabby, etc.
Mobile wallets
Generate a new wallet instantly. No extensions needed.
Comments
0