mirror of
https://github.com/d0zingcat/solana-agent-kit.git
synced 2026-05-13 23:16:55 +00:00
10 lines
265 B
TypeScript
10 lines
265 B
TypeScript
import { SolanaAgentKit, createSolanaTools } from "solana-agent-kit";
|
|
|
|
export const agentKit = new SolanaAgentKit(
|
|
process.env.SOLANA_PRIVATE_KEY!,
|
|
process.env.RPC_URL!,
|
|
process.env.OPENAI_API_KEY!,
|
|
);
|
|
|
|
export const solanaTools = createSolanaTools(agentKit);
|