Drive the terminal.
Vexor Terminal is a personal AI orchestrator commanding 9 specialized sub-agents, owned and governed by $VEXOR on Base. This page is everything you need to use the Console, talk to the orchestrator, and understand the token economics.
On this page+
What is Vexor Terminal?
Vexor is an autonomous AI orchestrator — not a chatbot. The orchestrator routes every request to one or more of 9 specialized sub-agents: Cipher, Atlas, Quill, Forge, Vector, Pulse, Halo, Prism, and Nyx. Each runs on its own LLM and stays in lane.
The terminal is owned and governed by $VEXOR, an ERC-20Votes token on Base. Hold it to access elevated tiers, stake it to earn a pro-rata share of agent revenue, vote with it to direct protocol evolution.
Quickstart
Five steps from zero to a real on-chain transaction on Base Sepolia.
Get testnet ETH
Connect your wallet
Claim $VEXOR from the faucet
Self-delegate for voting power
Stake, vote, repeat
Talk to Vexor
Smart contract addresses
All three Vexor contracts are deployed and verified on Base Sepolia. The deployer wallet is the temporary owner — ownership will rotate to a multisig before mainnet.
These contracts run on Base Sepolia testnet. The token has no monetary value. Anything you do here cannot be bridged to mainnet.
Console walkthrough
Wallet tab
Shows your address, current chain, $VEXOR balance, voting power, and faucet status. Two actions:
- Claim 1,000 $VEXOR — pulls from the public faucet (1x per address).
- Self-delegate — activates voting power for ERC-20Votes (required once).
Stake tab
Stake $VEXOR under one of four lock tiers. Longer lock = higher reward weight. Your share of the 30-day reward stream = your weighted stake ÷ total weighted stake.
| Lock | Reward multiplier |
|---|---|
| 30 days | 1.0x |
| 90 days | 1.5x |
| 180 days | 2.0x |
| 365 days | 3.0x |
Pending rewards stream in real time and can be claimed any time. Principal unlocks at the timestamp shown on each position.
Govern tab
OpenZeppelin Governor v5. Submit proposals with ≥100 $VEXOR voting power. Vote with For / Against / Abstain.
- Voting delay: 1 block
- Voting period: 7,200 blocks (~4 hours)
- Quorum: 4% of total supply
- Proposal threshold: 100 $VEXOR
Tier tab
Shows your current tier and progress to the next based on $VEXOR balance. See the full table below.
$VEXOR tokenomics
$VEXOR is an ERC-20Votes + EIP-2612 Permit token. Voting power requires self-delegation (one-time, no fee beyond gas).
Utility on the protocol:
- Pay for Runtime — burn $VEXOR per chat / task. Premium dispatch costs more.
- Stake to Earn — receive a pro-rata share of the staking pool, scaled by lock multiplier.
- Governance — vote on new sub-agents, model whitelisting, treasury spend, upgrades.
- Token-Gated Tiers — Bronze / Silver / Gold / Black unlocks elevated experience.
Mainnet supply, distribution, and launch venue will be announced before deployment. The testnet supply is provisional and exists solely for protocol testing.
Sub-agent reference
The orchestrator is a single agent. Behind it sit 9 specialists, each tuned to one domain and bound to one LLM tier.
Tier table
Token-gated tiers are computed from your $VEXOR balance at read time. They are not enforced on-chain (no NFT) — they're a soft access ladder applied by the protocol layer.
| Tier | Minimum balance | Unlocks |
|---|---|---|
| — | 0 | Connect wallet to read on-chain state |
| Bronze | 1,000 $VEXOR | Priority chat slot, 1-block latency |
| Silver | 10,000 $VEXOR | Private channels + early sub-agents |
| Gold | 100,000 $VEXOR | Beta sub-agents + private memory |
| Black | 1,000,000 $VEXOR | Revenue dashboard + governance lead |
Architecture
Vexor Terminal is a static frontend + a thin LLM proxy + 3 contracts. No indexer required for testnet.
┌──────────────────────────────────────────────┐
│ Next.js 16 (static export, App Router) │
│ · wagmi v2 + viem + RainbowKit │
│ · Tailwind v4 + Framer Motion + Geist Mono │
└─────────────┬──────────────────┬──────────────┘
│ │
│ JSON-RPC │ HTTPS
▼ ▼
┌─────────────────────┐ ┌──────────────────┐
│ Base Sepolia RPC │ │ Chat API │
│ sepolia.base.org │ │ FastAPI + Groq │
└──────────┬──────────┘ │ Llama 3.3 70B │
│ └──────────────────┘
▼
┌─────────────────────────────────┐
│ VexorToken ERC-20Votes │
│ VexorStaking 4-tier lock │
│ VexorGovernor OZ Governor v5 │
└─────────────────────────────────┘Live RPC reads happen through public Base endpoints. The chat backend is rate-limited and stateless. The protocol layer is ~600 lines of audited-pattern Solidity.