Avalanche-first agent wallet infrastructure with multi-EVM execution, policy rails, and Polymarket-ready collateral 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.
Venue balances now normalize live pUSD spender allowances, while pm_approve and pm_deposit keep wallet-side USDC.e and venue-side pUSD approvals in sync.
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.