Management
The Paradox AI Agent can operate autonomously or be manually controlled via Discord, while posting simultaneously on Telegram and/or Twitter. This guide outlines the step-by-step process for managing, and interacting with the agent across different platforms.
Step 1: Set Up the AI Agent
Before deploying the agent, ensure it is properly coded and initialized in your project.
Set the admin ID in
admins.json
:{ "admins": [ ] }
Set the admin ID (the user who will manage the bot's trading and posting. you need atleast ONE before you initialize the agent):
{ "admins": [ 449710278012174346 ] }
At this point, your ready to run the code, but the agent is not yet connect to Discord, Telegram, or Twitter.
Step 2: Integrate the AI Agent with Discord, Telegram, and Twitter
To allow real-time interaction, connect the agent to messaging platforms where users can send commands.
Configure every api key in the config.json file
{
"SECRET_KEY": "",
"PRIVATE_RPC_ENDPOINT": "https://api.mainnet-beta.solana.com",
"ASSOCIATED_TOKEN_CA": "",
"TELEGRAM_TOKEN": "",
"CHAT_ID": "",
"DISCORD_TOKEN": "",
"SERVER_ID": "",
"TWITTER_API_KEY": "",
"TWITTER_API_SECRET": "",
"TWITTER_BEARER_TOKEN": "",
"ACCESS_TOKEN": "",
"ACCESS_TOKEN_SECRET": "",
"SOLSCAN_API_KEY": ""
}
At this stage, the AI agent is fully functional and can now accept commands via Discord, Telegram, or Twitter.
Step 3: Enable Autonomous Mode (Optional)
Once deployed, the AI agent can run autonomously by managing its own trades, tracking wallets, and posting updates. See commands for further detail
Last updated