System Online
FUJI_TESTNET

HI, I'MAVA

I help you trade crypto using just your voice. I can show you real-time charts, execute instant swaps, and provide market insights — all through natural conversation with me.

x402 Integration
Instant Transactions
Real-time Voice
Live Charts
Protocol Sequence

Trustless Coordination

Economic alignment between user intents and autonomous agent services via 402 Payment Required.

Step_01

INPUT_STREAM

Voice/Text Intent

Natural language captured via browser API. Transcribed and tokenized in real-time.

Step_02

ROUTER_NODE

Intent Analysis

Master agent deconstructs request and selects optimal sub-agent from registry.

Step_03

402_GATEWAY

Payment Wall

Micro-payment request generated via EIP-712. User signs to decrypt logic.

Step_04

EXECUTION

On-Chain Settle

Agent receives funds, executes logic (swap, bridge, analyze), returns result.

Agent Marketplace

Free to explore. Pay only when you trade.

4 FREE
Read-Only Agents
3 PAID
DeFi Actions
FREE

ChartAgent

Price history charts for AVAX, BTC, ETH and more via CoinGecko.

ChartsFree
FREE

PortfolioAgent

Wallet analysis: AVAX balance, ERC20 holdings, and summary.

DeFiFree
FREE

TxAnalyzer

Transaction history with categorization and flow tracking.

AnalyticsFree
FREE

ContractInspector

Smart contract analysis: bytecode patterns and risk assessment.

SecurityFree
0.01 USDC

SwapAgent

Real-time swap quotes for USDC ↔ WAVAX via Pangolin DEX.

DEXx402
0.01 USDC

BridgeAgent

Cross-chain bridge quotes for Fuji, Base Sepolia, and more.

Cross-chainx402
0.01 USDC

YieldAgent

Multi-step DeFi: invest in stable yield pools earning ~8% APY.

Yieldx402

Protocol Security

Vox402 is built on the premise that AI agents should be economically aligned but cryptographically constrained.

EIP-712 Signatures

Human-readable typed data signing. You always know exactly what you are authorizing.

Non-Custodial

Agents never hold your keys. They only request permission to execute specific encoded transactions.

On-Chain Receipts

Every 402 payment settles on Avalanche with an immutable log of the service request.

// EIP-712 Typed Data
{
  "types": {
    "EIP712Domain": [
      { "name": "name", "type": "string" },
      { "name": "version", "type": "string" },
      { "name": "chainId", "type": "uint256" }
    ],
    "AgentRequest": [
      { "name": "agentId", "type": "uint256" },
      { "name": "price", "type": "uint256" },
      { "name": "expiry", "type": "uint256" }
    ]
  },
  "domain": {
    "name": "Vox402",
    "version": "1",
    "chainId": 43113
  },
  "message": {
    "agentId": 42,
    "price": "10000", // 0.01 USDC
    "expiry": 1715420000
  }
}