Quickstart Guide: Set Up Your edwin Agent with ElizaOS
This brief guide walks you through the setup and launch of an elizaOS agent utilizing the edwin plugin.
Prerequisites
Before you begin, ensure you have:
Node.js (LTS version)
pnpm package manager installed
Git
Basic command line/terminal proficiency
An EVM or Solana wallet with private key access
API key from a supported LLM provider (e.g., OpenAI or Anthropic)
For Solana users: A Helius API key
Installation and Configuration
1. Clone the Repositories
Start by cloning the necessary repositories:
2. Install the edwin Plugin
Add the edwin plugin to your elizaOS instance:
Copy the latest plugin code and update dependencies:
3. Set Up Character Profile
Place the edwin.character.json
configuration file in the characters
folder of your elizaOS installation.
Important: Edit the character file to specify your preferred LLM provider. For example, if using Anthropic, ensure the file contains:
Match this setting to the API key you'll configure in step 5.
4. Build the Application
Compile the plugin and elizaOS:
5. Configure Wallet and API Keys
Create your environment configuration:
In the .env
file:
For EVM chains:
Set
EVM_PRIVATE_KEY
with your wallet's private key
For Solana:
Set
SOLANA_PRIVATE_KEY
with your wallet's private keyFor Meteora integration: Obtain a Helius API key and set
SOLANA_RPC_ENDPOINT
accordingly
LLM Configuration:
Add your LLM provider API key (e.g., set
ANTHROPIC_API_KEY
for Anthropic)Make sure your character file specifies the correct model provider (e.g.,
"modelProvider": "anthropic"
)
6. Launch Your Agent
Start the elizaOS agent with:
7. Verify Successful Installation
You should see the following banner in your terminal, confirming edwin is properly loaded:
8. Using Your edwin-Enabled Agent
On another terminal window, launch the client interface:
Access the interface at http://localhost:5173/ and begin leveraging edwin for your DeFi operations.
Congratulations! Your elizaOS agent is now running with the edwin plugin installed and ready to use.
Last updated