Deploy Agent
π Agent Deployment Guide (Autumn Framework)
This walkthrough will help you deploy an AI agent using the Autumn Framework. Follow each step to successfully launch your agent on the Solana blockchain.
β
Step 1: Clone the Framework
Start by downloading the official Autumn repo:
π Step 2: Configure Your .env
File
.env
FileCopy the provided .env.example
and rename it:
Open .env
and fill in your actual configuration values:
π Step 3: Define Your Agent
Edit the agent definition file to include your custom metadata:
π§ Step 4: Build the Project
Install required dependencies and compile the project:
π Step 5: Deploy the Agent
Once your agent is configured, launch it to the Solana blockchain with:
Example Output:
π Output Breakdown
Agent Details: Shows the agentβs metadataβname, symbol, description, and website.
Transaction Status: Indicates a successful broadcast to the blockchain.
Confirmation Message: Confirms deployment went through.
SolScan Link: View the full transaction and metadata on Solanaβs explorer.
π How to Verify on SolScan
Copy the transaction signature from your terminal.
Check:
Transaction status (e.g., Confirmed)
Token metadata (name, symbol, supply)
Wallet address used
Gas and fee info
π§ͺ Step 6: Interact with Your Agent
Once deployed, query your agent with:
Use the CLI or API to explore features like:
Querying blockchain data
Analyzing token holders
Executing AI-guided trades
π§Ύ Sample defineAgent.ts
Configuration
defineAgent.ts
Configurationπ Additional Notes
Make sure your Solana RPC endpoint is stable and accessible.
Protect your private keyβnever upload it to GitHub or share it publicly.
Use a
.gitignore
file to keep.env
and other sensitive configs out of version control.
Last updated