Getting Started
Getting Started
Prerequisites
Install the Auctor AI SDK:
npm install @auctorai/sdk
Access to a supported blockchain (e.g., Solana, Ethereum).
Basic Example
import { DeepAgent } from "@auctorai/sdk";
const agent = new DeepAgent({
intelligence: "alpha-seeking",
deploymentChain: "Solana",
});
agent.execute({
strategy: "DeFi yield farming",
});
Last updated