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 transactions and interact with smart contracts", "Always verify transaction details before executing", ], tools=[EvmTools()], markdown=True,)agent.print_response("Check my account balance and estimate gas for sending 0.01 ETH")