Starknet Agent Kit (Snak) is a toolkit for creating AI agents that interact with the Starknet blockchain. It is available as both an NPM package and a ready-to-use NestJS server with a web interface. Snak supports multiple AI providers, including Anthropic, OpenAI, Google Gemini, and Ollama, enabling developers to build powerful and secure AI agents.
git clone https://github.com/kasarlabs/snak.git
cd snak
pnpm install
Create a .env
file:
# Starknet configuration (mandatory)
STARKNET_PUBLIC_ADDRESS="YOUR_STARKNET_PUBLIC_ADDRESS"
STARKNET_PRIVATE_KEY="YOUR_STARKNET_PRIVATE_KEY"
STARKNET_RPC_URL="YOUR_STARKNET_RPC_URL"
# AI Provider configuration (mandatory)
AI_PROVIDER_API_KEY="YOUR_AI_PROVIDER_API_KEY"
AI_MODEL="YOUR_AI_MODEL"
AI_PROVIDER="YOUR_AI_PROVIDER"
# NestJS server configuration
SERVER_API_KEY="YOUR_SERVER_API_KEY"
SERVER_PORT="YOUR_SERVER_PORT"
# Agent additional configuration
DISCORD_BOT_TOKEN?="YOUR_DISCORD_BOT_TOKEN"
DISCORD_CHANNEL_ID?="YOUR_DISCORD_CHANNEL_ID"
Run the server:
pnpm run start
config/agents/config-agent.json
:{
"name": "MyAgent",
"context": "You are a Starknet monitoring agent...",
"interval": 60000,
"chat_id": "your_discord_channel_id",
"allowed_actions": ["get_balance", "get_block_number"],
"prompt": "Monitor ETH balance and alert if it drops below 1 ETH..."
}
import { StarknetAgent } from 'starknet-agent-kit';
const agent = new StarknetAgent({
provider: new RpcProvider({ nodeUrl: process.env.STARKNET_RPC_URL }),
accountPrivateKey: process.env.STARKNET_PRIVATE_KEY,
accountPublicKey: process.env.STARKNET_PUBLIC_ADDRESS,
aiModel: process.env.AI_MODEL,
aiProvider: process.env.AI_PROVIDER,
aiProviderApiKey: process.env.AI_PROVIDER_API_KEY,
signature: 'key',
});
const response = await agent.execute("What's my ETH balance?");
To learn more about actions, read the documentation section. The Kit provides an easy-to-navigate catalog of all available plugins and their actions. To add actions to your agent, follow the step-by-step guide.
Contributions are welcome! Feel free to submit a Pull Request.
MIT License - see the LICENSE file for details.
For detailed documentation, visit docs.kasar.io.
Build powerful and secure AI Agents powered by Starknet.