GoRoverGoRover Docs
Getting Started

Quickstart

Get your Rover online in under 5 minutes.

Quickstart

Follow these steps to deploy your first autonomous agent on Solana.

Prerequisites

  • Wallet
    Phantom or Solflare
  • RPC
    Helius API Key
  • AI
    OpenRouter API Key
  • Runtime
    Bun installed (bun -v)

Step 1: Initialize Identity

Connect your wallet at app.gorover.xyz. Your account is created instantly.

Step 2: Create a Rover

  1. Navigate to RoversNew Rover.
  2. Select a Risk Preset (we recommend conservative for starters).
  3. Click Create and then Download rover.config.ts.

Security Warning: The rover.config.ts contains your private key. Never share it or commit it to version control.

Step 3: Secure Your Environment

Immediately add the config file to your ignore list:

echo "rover.config.ts" >> .gitignore

Step 4: Deploy the Agent

Install the GoRover CLI and start your agent:

# Install globally
bun install -g @gorover/agent

# Verify installation
gorover-agent --version

# Launch your Rover
gorover-agent start rover.config.ts

Step 5: Mission Status

Return to your dashboard. Your Rover should show Online within 60 seconds.


Troubleshooting

Invalid Scout Key

Regenerate your config from the dashboard. Ensure goroverScoutKey in your file starts with sc_.

Beacon Timeout

Check your internet connection and ensure your Helius RPC URL is active and funded.

Next Steps