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.
Economic alignment between user intents and autonomous agent services via 402 Payment Required.
Natural language captured via browser API. Transcribed and tokenized in real-time.
Master agent deconstructs request and selects optimal sub-agent from registry.
Micro-payment request generated via EIP-712. User signs to decrypt logic.
Agent receives funds, executes logic (swap, bridge, analyze), returns result.
Free to explore. Pay only when you trade.
Price history charts for AVAX, BTC, ETH and more via CoinGecko.
Wallet analysis: AVAX balance, ERC20 holdings, and summary.
Transaction history with categorization and flow tracking.
Smart contract analysis: bytecode patterns and risk assessment.
Real-time swap quotes for USDC ↔ WAVAX via Pangolin DEX.
Cross-chain bridge quotes for Fuji, Base Sepolia, and more.
Multi-step DeFi: invest in stable yield pools earning ~8% APY.
Vox402 is built on the premise that AI agents should be economically aligned but cryptographically constrained.
Human-readable typed data signing. You always know exactly what you are authorizing.
Agents never hold your keys. They only request permission to execute specific encoded transactions.
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
}
}