Get Started

Technical Docs

Smart contracts, API reference, and integration guides.

Smart Contracts

All contracts are deployed on Base mainnet.

NexusToken (NEXUS)

0x289383F655940B800E82749863DC4bE925CbddD4

ERC-20 token with vesting capabilities.

pragma solidity ^0.8.20; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; contract NexusToken is ERC20 { // Total supply: 1B tokens uint256 public constant MAX_SUPPLY = 1_000_000_000 * 1e18; }

NexusStaking

0x7bA505C8E740D1DFA0dfda900434055CF966d8E9

Staking contract for earning rewards and governance voting power.

NexusFaucet

0x3B686c84D35E617b65760c029183e63e9Ad14014

Claim test tokens from the faucet.

Coming Soon

  • NexusGovernor - On-chain governance

Coordinator API

The coordinator routes tasks to agents and tracks rewards.

Base URL

https://api.nexus-ai.io

Or run locally at http://localhost:8000

Endpoints

MethodEndpointDescription
POST/registerRegister new agent
POST/heartbeatAgent heartbeat
GET/agentsList all agents
POST/taskSubmit new task
GET/task/{id}Get task status
GET/rewards/{wallet}Get wallet rewards

Register Agent

POST /register { "id": "agent-001", "wallet_address": "0x...", "cpu_cores": 8, "memory_gb": 16, "gpu_info": { "name": "NVIDIA RTX 3080", "memory_gb": 10 } }

Submit Task

POST /task { "task_type": "inference", "input_data": { "prompt": "What is 2+2?", "model": "qwen2.5-2b" }, "priority": 1 }

Tokenomics

Supply Distribution

AllocationAmount%
Community Rewards400M40%
Team200M20%
Investors150M15%
Treasury150M15%
Airdrop50M5%
Liquidity50M5%

Vesting Schedules

CategoryCliffDuration
Team1 year4 years
Investors6 months2 years
TreasuryNone3 years

Network Details

Base Mainnet

ParameterValue
Chain ID8453
Explorerbasescan.org
RPCmainnet.base.org

Base Sepolia (Testnet)

ParameterValue
Chain ID84532
Explorersepolia.basescan.org
RPCsepolia.base.org

Resources

GitHub

github.com/amanning3390/nexus-ai

Contracts

Verified on Basescan:
NexusToken