This guide is accompanied by a video walkthrough.
Before diving into specific tools, let's understand the key components in the AI development stack:
Understanding the AI Stack
-
Large Language Models (LLMs)
- The foundational AI models (like GPT-4, Claude, or Llama)
- Process and generate natural language
- Provide raw intelligence and reasoning capabilities
- Examples: OpenAI's GPT-4, Anthropic's Claude, Meta's Llama
-
Agent Frameworks (like Eliza)
- Built on top of LLMs to create autonomous agents
- Manage agent personalities and behaviors
- Handle memory and context
- Provide multi-platform integration
- Examples: Eliza, LangChain, AutoGPT, Vercel AI
-
Domain-Specific Agent Kits (like Solana Agent Kit)
- Built for specific use cases (e.g., blockchain operations)
- Provide pre-built tools and integrations
- Abstract away technical complexity
- Ready-to-use blockchain functions
- Examples: Solana Agent Kit, GOAT Toolkit
Think of it like this:
- LLMs are the "brain" that can understand and generate language
- Agent frameworks are the "operating system" that manages the AI's behavior
- Domain-specific kits are the "apps" that give the AI specific capabilities
Building AI Agents for Solana
This guide will show you how to:
- Build a basic AI agent using SendAI's Solana Agent Kit
- Create a Twitter bot with Eliza Framework
- Understand on-chain AI integration options
- Options on how to build advanced trading bots
Introduction to AI Agents on Solana
AI agents on Solana are autonomous programs that can interact with the blockchain using natural language processing and machine learning. They can:
- Execute transactions
- Monitor blockchain activity
- Interact with smart contracts
- Provide user assistance
- Automate complex workflows
Available Frameworks
Several frameworks are available for building AI agents on Solana:
- SendAI's Solana Agent Kit
- A collection of tools for building agents on Solana
- Compatible with Eliza, Langchain, and Vercel AI SDK
- Built-in Solana tools and utilities
- Natural language processing capabilities
- Solana Agent Kit
- Documentation
- Eliza Framework
- Combines datalayer, llm and agents and has a dedicated Solana plugin
- Extensible agent architecture
- Easy integration with existing projects and can be used for example for Twitter (X), telegram or discord bots
- GitHub Repository
- GOAT Toolkit
- Comprehensive development toolkit
- Cross-chain compatibility
- GitHub Repository
- Rig Framework
- Native Rust implementation
- Good for high performance trading bots
- Can be combined with the Listen.rs toolkit for Solana integration transaction monitoring and sending transactions using Jito bundles for example
- GitHub Repository
- Listen.rs Repository
If you are building an AI framework feel free to open a PR to add your framework to the list
Getting Started with SendAI
Let's start by setting up a basic AI agent using SendAI's Solana Agent Kit that can perform actions on the Solana blockchain and that we can chat with:
Install dependencies
A modern IDE is recommended for this guide. We will use Cursor for this example which has integrated AI features and can help you with any errors you may encounter. which has integrated AI features and can help you with any errors you may encounter.
You will need to have node with version
23.x.x
installed. Open an empty folder using vscode or cursor and run the
following command in the terminal:
This guide requires Node.js version 23.x.x
. Install it using nvm:
Your IDE should setup the package.json
file for you. If not, this is how it
should look like:
Configure environment
Create a .env
file in the root of the project and add the following:
Note that we encode the private key to base58 before we parse it into the solana agent constructor in the script so you can just put the byte array [34,2,34...] here in the env file.
You can create a key using the following command:
And copy the contents into your .env
file for SOLANA_PRIVATE_KEY
.
The OPENAI_API_KEY is the key for the OpenAI API and you can find it in the OpenAI platform
The RPC url we just leave at devnet for now.
Create the agent script
Create a new file called agent.ts
with the following content:
Run the agent
You can run this script using the following command:
This will start a simple chat with the agent.
Test basic functionality
You can now ask it to show you your solana balance and ask it to request some devnet sol:
If the devnet faucet is empty you can use the web faucet instead and paste in your solana address.
Create an NFT collection
Next ask the agent:
Mint an NFT
After the collection is created, mint an NFT:
This will mint you an NFT with the name Train1 and an image of a train.
You can also use any different metadata for your NFT which you can upload using pinata or any other storage provider. You should end up with something like this devnet train nft
Where to go from here?
- You can now for example import the private key into your browser extension wallet to see the NFT.
- You can ask the agent to show you all your NFTs. You will notice you will get
an error for this action. This is because the default action to request assets
uses the Helius Asset api to request assets so for that you would need to add
a Helius API key to your
.env
file and pass it into the agent. pass it into the agent.
- You can now start writing your own actions following the Contribution guide
There is also an example of a web chat for your agent using React that you can for example deploy to Vercel.
Not all actions are working 100% yet, like the request balance for example sometimes fails, but you can see the progress in the Solana agent kit repo and also contribute your own actions to be used by everyone.
Building with Eliza Framework
The ElizaOS (formerly known as Ai16z) is an AI framework. That means it combines multiple applications into one and organizes their interactions. It combines:
- Different LLMs to understand the user
- Blockchain agents with different actions (like minting an NFT for example)
- Datalayers to store the characters state between actions using for example Redis, PostgreSQL DB or local storage
- Different clients like X, telegram, discord. etc.
Its takes all these things and puts them together in a way that you can create a "Character" that can interact with users or autonomously. These Characters are defined in a JSON file, which defines which actions it can perform, which LLM it should use and different prompts that define the behaviour of the character.
Building a Twitter (X) bot that can mint NFTs on request
What we will build now is a helpful solana developer assistant that can help developers on the platform X to get started with solana and it will also be able to mint NFTs to the users on demand.
Clone the repository
First clone the Eliza repository:
Set up the environment
This guide requires Node.js version 23.x.x
. Install it using nvm:
Then install the dependencies:
Configure environment variables
Create your environment file:
What we are interested in for this guide is:
Make sure you have some devnet sol in your wallet before you start the agent.
Encode private key (if needed)
If you have your private key in hex format you can base58 encode your private key using the following js snippet:
And run it using
Create character configuration
To create a new character we need to create a character.json file. You can find the preset characters in the characters folder of the Eliza project. To create a new character you can copy and change one of the already existing characters or you can use the composer feature in Cursor and tell it what kind of character you want to create.
The important part here are the clients and the modelProvider. In our case we
want to use twitter as a client and openai as the model provider because this is
what we also set our secrets for in the .env
file.
Run the agent
Now that the configuration is done we can run our character:
This will start the agent and you can now interact with it on twitter. The character will automatically start posting tweets every few hours and when we interact with him it will be able to perform solana actions like minting NFTs for example.
Here you can see the character in action.
You can also interact with the character locally using the following command:
You may need to free your port 3000 and start your character with the --host
flag.
If your client does not connect make sure you run your agent with the --host
flag and that your port 3000 is not in use when you start the client.
For more information follow the official eliza documentation
Disclaimer: The Solana integration and actions are not perfect yet but they are in constant development and are moving fast. There will be a direct integration of the SendAI agent kit into Eliza soon.
Using GOAT Toolkit
GOAT is similar to Solana Agent Kit a collection of many different blockchain tools that also supports different Solana actions and other chains. It can also be integrated into the Eliza framework for example and supports many different wallets, frameworks and block chains.
On chain program agent integration
If you want to use an agents reply within a solana program you need to use an oracle that writes the reply data into an account that your program can read. You can find an example of an LLM which will transfer tokens to any user that answers questions correctly here:
On chain program LLM interaction
This is an example of an on-chain program that integrates with an LLM (AI) oracle to create an interactive token-dispensing agent named "Mar1o".
Key Features
-
AI Agent Interaction
- Users can chat with Mar1o to try to earn tokens
- Agent evaluates user's Solana knowledge to decide token amounts
- Responses are in JSON format with reply text and token amount
-
Token Management
- Creates MAR1O tokens with metadata
- Can mint between 0-10,000 tokens based on AI response
- Uses PDAs for token management
Program flow explained
Here's how this program works:
This demonstrates how to combine AI capabilities with on-chain token mechanics to create interactive blockchain experiences. Here is a live example where you can try to convince the Agent to transfer you some tokens.
Advanced Rust agents for algorithmic trading
If you want to write your agents in Rust you can use the Rig framework and the Listen.rs library.
These two work nicely together. While the Rig framework gives you an easy way to connect to LLMs the Listen.rs toolkit provides you the Solana integration including Transaction monitoring and sending transactions using Jito bundles for example.
Best Practices
- Know that your agent has a private key and thus can access the funds in your wallet. If someone can chat with your agent and it has a transfer action for example users can probably get it to transfer them your funds.
- Use a payed RPC endpoints. The public endpoints usually get rate limited
- Monitor agent activities and make sure they are not doing anything malicious or get tricked into it by users interacting with them
- Implement priority fees and transaction retries to your agent actions so that they also land when there is congestion on the network
- If possible test on devnet first before you deploy to mainnet. Most agents just take the RPC url as an input and you can use a devnet one until your are ready for mainnet. Not all actions maybe possible to do on devnet though.
- When writing your own actions add integration tests for them so that the frameworks can monitor which actions are failing due to changed programs or APIs
Conclusion
AI agents on Solana open up new possibilities for automation and interaction with the blockchain. While not all integrations are perfect yet they are developed fast and offer lots of opportunity for contributions and are very flexible of adding your own integrations.