Avalanche-first agent wallet infrastructure with multi-EVM execution, policy rails, and official-CLI-backed Polymarket flows.
const { agent } = await Evalanche.boot({ network: "polygon" });
await agent.mcp().call("pm_approve", {});
const balances = await agent.mcp().call("pm_balances", {});
const topup = await agent.bridgeTokensDetailed({
fromChain: "base",
toChain: "polygon",
fromToken: "USDC",
toToken: "USDC",
amount: "25",
});
Reusable wallet and execution surface across Avalanche and the broader EVM stack without browser popups or custodial dependencies.
Identity resolution, service endpoints, and trust-oriented agent workflows are built in instead of bolted on later.
Holdings, DeFi, Polymarket, Hyperliquid, dYdX, CoinGecko, and cross-chain execution live behind the same agent-facing surface.
Evalanche is open-source infrastructure that powers Eva Protocol and any other agent product that needs serious wallet and execution primitives.
HTTP MCP now requires an explicit bearer token, stays on loopback by default, enforces request timeouts, and rejects oversized request bodies before parsing.
Authenticated Polymarket tools now route through the official CLI with JSON-only parsing, no argv secrets, and redacted subprocess failures.
Approve-and-call, proxy upgrades, Li.Fi bridge/swap execution, and Gas.zip funding now route through the active spending policy before they can broadcast value.