4.2 Quickstart

4.2.1 Clone the repo

git clone https://github.com/philipmorris28/capture.git
cd capture

4.2.2 Create a virtual environment (recommended)

python3 -m venv venv
source venv/bin/activate      # macOS/Linux

# On Windows (PowerShell)
# .\venv\Scripts\Activate.ps1

4.2.3 Install dependencies

pip install --upgrade pip
pip install -r requirements.txt

4.2.4 Run the engine

python capture.py

If everything is fine you should see something like:

Capture Engine - Real-time Solana Arbitrage
Monitoring DEXs: Jupiter, Raydium, Orca, Phoenix
Minimum profit threshold: 0.10%
---------------------------------------------------------
[16:15:02] SOL/USDC | jupiter@... → raydium@... | spread ... | profit 1.20% (120bps)
...
Stats: 23 opportunities | Avg: 0.78% | Best: 2.10%

Hit Ctrl+C to stop.

Last updated