Welcome to the Solana AI Agent documentation! This Python package provides a powerful toolkit for building AI-powered agents capable of interacting with the Solana blockchain.
To install the package, use the following commands:
# Basic installation
pip install solana-agentkit
# With development tools
pip install solana-agentkit[dev]
# With documentation tools
pip install solana-agentkit[docs]
Here’s a simple example to get started with the SolanaAgent class:
from solana_agentkit import SolanaAgent
# Initialize the agent with your private key and RPC URL
agent = SolanaAgent(
private_key="your_private_key",
rpc_url="your solana rpc url"
)
# Check balance
balance = await agent.get_balance()
print(f"Current balance: {balance} SOL")
# Transfer tokens
result = await agent.transfer(
to="recipient_address",
amount=1.0
)
print(f"Transfer successful: {result.signature}")
- Agent Framework: Easily build and deploy AI agents on Solana.
- Transaction Tools: Simplified methods for creating and managing transactions.
- NFT Utilities: Tools for creating and managing NFT collections.
- Token Tools: Deploy and manage SPL tokens with ease.
- Domain Management: Register and manage
.sol
domains.
- LangChain Support: Integrate advanced AI capabilities for handling complex tasks.
- OpenAI Integration: Leverage AI for image generation, text processing, and more.
- Custom Behaviors: Create agent-specific personalities and behaviors.
- Command Understanding: Enable natural language understanding for blockchain operations.
- Wallet management and transaction building.
- Priority fee handling for faster transactions.
- Multi-signature support for enhanced security.
Clone the repository and set up your environment:
# Clone the repository
git clone https://github.com/fcbtc1116/solana-ai-agent
cd solana-ai-agent
# Create a virtual environment
python -m venv venv
source venv/bin/activate # For Unix-based systems
# or
.\venv\Scripts\activate # For Windows systems
# Install development dependencies
pip install -r requirements.txt
Run the tests to ensure the system is working properly:
# Run all tests
pytest tests/
# Run with coverage
pytest --cov=solana_agentkit tests/
We enforce consistent code quality with tools like Black, isort, and Pre-commit hooks:
# Format code
black src/ tests/
# Sort imports
isort src/ tests/
Here’s an overview of the project structure:
solana-agentkit/
├── docs/ # Documentation
├── src/ # Source code
│ └── solana_agentkit/
│ ├── agent/ # Agent implementations
│ ├── tools/ # Blockchain utilities and tools
│ └── utils/ # Utility functions
├── tests/ # Test suite
└── examples/ # Usage examples
- DEX Integration: Integrating with Jupiter and Orca for seamless trading.
- Lending: Integration with Solend for borrowing and lending.
- Staking: Integration with Marinade for liquid staking.
- On-Chain Metrics: Provide price feeds, market volume, and portfolio tracking.
- Alerts: Event-based monitoring and notifications.
- Input Validation: Ensures all inputs are validated before processing.
- Transaction Simulation: Simulate transactions to assess risks before broadcasting.
- Advanced Rate Limiting: Handle rate limits for transactions effectively.
- Yield Farming: Utilities to support yield farming and liquidity mining.
- Governance: Tools for creating proposals and voting.
- Automation: Automate trading and portfolio rebalancing tasks.
If you have any questions or need assistance, feel free to reach out to the repository owner.