An open-source toolkit for connecting AI agents to EVM protocols. Initial version inspired by Solana Agent Kit.
- Trade tokens
- Launch new tokens
- Launch tokens on AMMs
[TBO]
yarn add @hiero-ai/evm-agent-kit
import { EVMKit, createEVMTools } from "evm-agent-kit";
import { base } from "viem/chains"; // or any other chain
// Initialize with private key and optional RPC URL
const chain = base;
const privateKey = "evm-wallet-private-key";
const agent = new EVMKit(privateKey, chain);
// Create LangChain tools
const tools = createEVMTools(agent);
Ready-to-use LangChain tools for blockchain operations
Vercel AI SDK for AI agent integration
- viem
- langchain
- @langchain/core
Contributions are welcome! Please feel free to submit a Pull Request. Refer to CONTRIBUTING.md for detailed guidelines on how to contribute to this project.
The EVM Agent Kit handles private keys and transactions. Always ensure you're using it in a secure environment and never share your private keys.