Integrate EVM blockchain capabilities into your AI agent
The EVM plugin enables AI agents to interact with Ethereum Virtual Machine (EVM) compatible blockchains, supporting token transfers, swaps, bridging, and governance operations across 30+ networks.
import { evmPlugin } from '@elizaos/plugin-evm';import { AgentRuntime } from '@elizaos/core';// Initialize the agent with EVM pluginconst runtime = new AgentRuntime({ plugins: [evmPlugin], // ... other configuration});