Avalanche-first agent wallet infrastructure with multi-EVM execution.
const { agent } = await Evalanche.boot({ network: "avalanche" });
const holdings = await agent.holdings().scan({
include: ["native", "tokens", "defi", "prediction", "perp"],
});
const withdrawal = await agent.mcp().call("pm_withdraw", {
amountUSDC: "10",
toChainId: "8453",
toTokenAddress: "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
recipientAddr: agent.address,
});
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.
Scan native balances, tokens, DeFi positions, Polymarket positions, and perp venue positions through one normalized holdings API.
Polymarket now supports both CTF redemption and wallet withdrawal via the official bridge flow, with explicit verification envelopes for agents.
Integrity gates, docs parity, tarball validation, audit regression checks, smoke validation, and machine-readable release artifacts now guard every tagged release.