Build advanced Solana agents using LangGraph and Solana Agent Kit
Create a sophisticated multi-agent system using LangGraph and Solana Agent Kit. This implementation enables specialized agents to handle different aspects of Solana operations through a coordinated workflow.
const workflow = new SolanaAgentWorkflow();// General queryconst response = await workflow.run({ query: "What is the current SOL price?", type: QueryType.GENERAL});// Transaction queryconst transferResponse = await workflow.run({ query: "Send 1 SOL to address...", type: QueryType.TRANSACTION});