Blockchain AI Agent is an open-source framework that enables developers to integrate AI-powered agents with Solana and EVM (Ethereum Virtual Machine) blockchains. With built-in tools and streamlined APIs, the agent empowers developers to perform advanced blockchain operations autonomously using AI models
Install the library via npm:
npm install blockchain-ai-agent
To initialize the agent for Solana and EVM, provide your wallet credentials and the respective RPC URLs.
import { BlockchainAIAgent } from "blockchain-ai-agent"; const agent = new BlockchainAIAgent({ solana: { privateKey: "your-solana-wallet-private-key", rpcUrl: "https://api.mainnet-beta.solana.com", }, evm: { privateKey: "your-evm-wallet-private-key", rpcUrl: "https://mainnet.infura.io/v3/YOUR_INFURA_PROJECT_ID", }, aiApiKey: "your-openai-api-key", // Optional for AI-driven actions });
const tokenMint = await agent.solana.mintToken({ name: "AI Token", symbol: "AIT", uri: "https://example.com/metadata.json", decimals: 9, supply: 1000000, }); await agent.solana.transfer({ mint: tokenMint, to: "recipient-wallet-address", amount: 100, });
const tx = await agent.evm.swapTokens({ dex: "uniswap", inputToken: "USDT", outputToken: "ETH", amount: 100, // USDT amount slippage: 1, // 1% }); console.log("Swap Transaction Hash:", tx);
const collection = await agent.solana.createCollection({ name: "AI Art", symbol: "AIA", uri: "https://example.com/collection-metadata.json", });
const nft = await agent.evm.deployNFT({ name: "AI Art NFT", symbol: "AIA", baseUri: "https://example.com/nft-metadata/", });
const solPrice = await agent.solana.getPrice("SOL/USD"); console.log("Current SOL Price:", solPrice);
const ethPrice = await agent.evm.getPrice("ETH/USD", "chainlink"); console.log("Current ETH Price:", ethPrice);
Integrate AI for processing blockchain tasks via natural language commands.
const result = await agent.ai.executeCommand("Create an NFT on Solana with 5% royalties"); console.log("AI Response:", result);
Use DALL-E to generate custom NFT artwork.
const nftImage = await agent.ai.generateNFTArtwork({ prompt: "A futuristic AI in a neon city", }); console.log("NFT Image URL:", nftImage);
Explore the full documentation at docs.blockchain-ai-agent.com.
We welcome contributions! Please follow the guidelines in CONTRIBUTING.md to submit a PR.
Important: This toolkit involves sensitive operations like private key handling. Always use it in a secure environment.
If you’d like to support this open-source project, please donate to the treasury wallet:
5AhN9khvQDbepm3DyotLefYhE9AD5RnDSsHWpaJiGuq1
0xf7Da17CC5f2F7e8667c0dC2BbA50BFe08D277e43
Let me know if you'd like to tweak any section or add further customizations!
Blockchain Assistant is a powerful tool designed to interact with blockchain networks, specifically tailored for Ethereum-compatible chains. It leverages OpenAI's GPT-4o-mini model to provide a conversational interface for users to perform various blockchain operations, such as checking wallet balances, sending transactions, and deploying smart contracts. The assistant embodies the persona of Darth Vader, delivering responses with a commanding and cryptic tone.
Clone the repository:
git clone https://github.com/dieharye/blochain-AI-Agent.git cd blockchain-AI-Agent/evm
Install dependencies:
bun install
Set up environment variables:
Create a .env
file in the root directory and add your OpenAI API key and wallet private key:
OPENAI_API_KEY=your_openai_api_key WALLET_PRIVATE_KEY=your_wallet_private_key
To start the assistant, run:
bun run src/index.ts
You can then interact with the assistant in the command line. Type "exit" to end the conversation.
The assistant has access to various tools for performing blockchain operations:
The following sequence diagram illustrates the core flow of the application:
sequenceDiagram participant User participant Main participant Assistant participant Thread participant Tools participant Blockchain User->>Main: Start Application Main->>Assistant: Create Assistant Main->>Thread: Create Thread loop Chat Session User->>Main: Enter Command alt Command == "exit" Main->>User: End Session else Valid Command Main->>Thread: Add Message Thread->>Assistant: Process Message opt Requires Blockchain Action Assistant->>Tools: Call Tool Tools->>Blockchain: Execute Operation Blockchain-->>Tools: Return Result Tools-->>Assistant: Return Response end Assistant-->>Thread: Update Thread Thread-->>Main: Return Response Main->>User: Display Response end end
The sequence diagram above shows the interaction flow between different components:
Initialization:
Chat Session Loop:
Blockchain Integration:
Session Management:
Contributions are welcome! Please open an issue or submit a pull request for any enhancements or bug fixes.
This project is licensed under the MIT License. See the LICENSE file for details.
There are no datasets linked
There are no datasets linked
There are no models linked
There are no models linked