Page cover

Getting Started

Dependencies and Requirements

Python 3.8 or Higher

# Check your Python version
python --version

# If you need to install Python, visit: https://www.python.org/downloads/

Node.js and npm (for interacting with the Launchpad)

# Check Node.js version
node --version

# If needed, install from: https://nodejs.org/

MongoDB (Optional but recommended)

# Option 1: Install locally
# Visit: https://www.mongodb.com/try/download/community

# Option 2: Use Docker
docker run -d -p 27017:27017 --name mongodb mongo

# Option 3: Use MongoDB Atlas (free cloud database)
# Sign up at: https://www.mongodb.com/cloud/atlas

MetaMask Wallet

  1. Install MetaMask browser extension from metamask.io

  2. Create a new wallet or import existing one

  3. Add BNB Chain network:

    • Network Name: BNB Smart Chain

    • RPC URL: https://bsc-dataseed.binance.org/

    • Chain ID: 56

    • Symbol: BNB

    • Block Explorer: https://bscscan.com

LLM Provider (Choose at least one)

Option A: Anthropic Claude (Recommended)

  1. Sign up for an account

  2. Navigate to API Keys section

  3. Create a new API key

  4. Save your key securely

Option B: OpenAI GPT

  1. Create an account

  2. Go to API Keys section

  3. Generate new secret key

  4. Save your key securely

Option C: Google Gemini

  1. Sign in with Google account

  2. Create API key

  3. Save your key securely

Twitter/X API Credentials

  1. Apply for Twitter Developer account at developer.twitter.com

  2. Create a new App in the Developer Portal

  3. Generate API Keys and Access Tokens

  4. Enable Read and Write permissions

  5. Save all credentials:

    • API Key

    • API Secret Key

    • Access Token

    • Access Token Secret


Last updated