The following agent can interact with Ethereum blockchain:
from agno.agent import Agentfrom agno.tools.evm import EvmToolsagent = Agent( instructions=[ "You are a blockchain assistant that helps with Ethereum transactions", "Help users send ETH transactions to the address they provide", "Always verify transaction details before executing", "Report the transaction hash once the transaction completes", ], tools=[EvmTools()],)agent.print_response("Send 0.01 ETH to 0x742d35Cc6634C0532925a3b8D4034DfA8e5D5C4B", stream=True)