Connect Wallet

Select a Solana wallet to connect to Parallax Finance.

Terminal v1.0Not connected
/Documentation

Overview

Parallax Finance is an autonomous AI trading intelligence protocol built on Solana. It provides institutional-grade quantitative analysis, real-time signal generation, and autonomous agent execution for DeFi traders.

Parallax SDK is currently in beta. API endpoints and interfaces may change before mainnet launch.

The protocol consists of three core layers: the Signal Engine (real-time market intelligence), the Agent Swarm (autonomous execution), and the Strategy Vaults (managed yield).

Quick Start

Get up and running with Parallax in under 5 minutes.

1. Install the SDK

# npm
npm install @parallax/sdk

# yarn
yarn add @parallax/sdk

2. Initialize the Client

import { ParallaxClient } from '@parallax/sdk';

const client = new ParallaxClient({
  apiKey: 'prlx_live_...',
  network: 'solana-mainnet',
  commitment: 'confirmed'
});

3. Subscribe to Signals

client.signals.subscribe({
  pairs: ['SOL/USDC', 'JUP/SOL'],
  confidence: 0.85,
  onSignal: (signal) => {
    console.log(signal.action, signal.price, signal.score);
  }
});

Architecture

Parallax operates as a multi-layered system:

  • Data Layer — Ingests real-time on-chain data from Solana DEXs (Jupiter, Raydium, Orca), lending protocols, and derivatives.
  • Intelligence Layer — Multi-model ensemble: transformer price prediction, sentiment analysis, and order flow modeling.
  • Execution Layer — MEV-protected routing with Jito bundles, priority fee optimization, sandwich prevention.
  • Vault Layer — Automated strategy deployment with risk-adjusted returns managed by the AI agent swarm.

Installation

The SDK requires Node.js 18+ and supports ESM and CommonJS.

npm install @parallax/sdk @solana/web3.js

TypeScript types are included. No additional @types package needed.

Client Setup

The ParallaxClient is the main entry point for all SDK interactions.

const client = new ParallaxClient({
  apiKey: 'prlx_live_...',        // from dashboard
  network: 'solana-mainnet',      // or 'solana-devnet'
  commitment: 'confirmed',       // Solana commitment
  wallet: walletAdapter,            // Optional: for execution
  maxRetries: 3,                  // Auto-retry on failure
});

Signals API

Real-time trading intelligence with confidence scores.

client.signals.subscribe({
  pairs: ['SOL/USDC'],
  timeframe: '5m',
  confidence: 0.80,
  onSignal: (signal) => {
    // signal.action: 'LONG' | 'SHORT' | 'CLOSE'
    // signal.confidence: 0.0 - 1.0
    // signal.targets: { tp1, tp2, sl }
  }
});

// Historical signals
const history = await client.signals.history({
  pair: 'SOL/USDC', from: '2025-01-01', limit: 100
});

Agents API

Deploy and manage autonomous trading agents.

const agent = await client.agents.create({
  strategy: 'momentum-alpha',
  pairs: ['SOL/USDC', 'JUP/SOL'],
  riskLevel: 'medium',
  maxPosition: 1000,       // Max USDC per trade
  stopLoss: 0.05,          // 5%
  autoCompound: true
});

const perf = await agent.performance();
console.log(perf.pnl, perf.winRate, perf.sharpe);

Vaults API

Deposit into AI-managed strategy vaults.

const vaults = await client.vaults.list();

const tx = await client.vaults.deposit({
  vault: 'prlx-alpha-1',
  amount: 500,            // USDC
  slippage: 0.01
});

Contract Addresses

Parallax contracts on Solana Mainnet:

// Core Protocol
Program ID:    PRLXj7Fc3a...d92E4b8F1c0A
Token Mint:    PRLX5bdc2d52...17a79310a45d

// Vaults
Alpha Vault:   PVLT8xk2m9...aF4c21bE8d03
Delta Vault:   PVLT3nR7q2...eC9f56dA1b72

// Staking
Staking Pool:  PSTK6wL4p8...bD2e93cF5a41

$PRLX Token

The $PRLX token powers governance and protocol utility:

  • Governance — Vote on strategy allocation, fees, and upgrades.
  • Staking — Earn protocol revenue share.
  • Access — Higher-tier signals and agents require staking.
  • Supply — 1B total. No inflation. Deflationary buyback.
Parallax Finance

InstitutionalAI TradingIntelligence

Unleash the power of AI-driven quantitative analysis and real-time market insights on Solana. Your edge in decentralized finance starts here.

Explore Features
Built on Solana
Protocol

Redefining the trading
intelligence layer

Parallax Finance is an autonomous AI trading protocol that synthesizes on-chain data, market microstructure, and sentiment signals to deliver institutional-grade intelligence to every participant on Solana.

$2.4B+
Total Volume Analyzed
<50ms
Signal Latency
147K+
Strategies Deployed
24/7
Autonomous Operation
Capabilities

Built for the next
generation of traders

A full-stack AI trading intelligence suite — from signal generation to execution.

Real-Time Signal Engine

Multi-model ensemble generating high-conviction signals from price action, volume, and order flow.

Autonomous Agent Swarm

Specialized AI agents optimized for specific market conditions, asset classes, and timeframes.

MEV-Protected Execution

Sandwich attack protection with Jito bundles ensuring optimal execution.

Liquidity Intelligence

Deep analysis of pools, whale positioning, and concentration zones across Solana DEXs.

Predictive Analytics

Transformer models forecasting price movements, volatility regimes, and liquidation cascades.

Strategy Vault

Curated AI strategies with risk-adjusted returns managed autonomously.

Tokenomics

$PRLX Token Distribution

Designed for sustainable growth and aligned incentives.

1B TOTAL SUPPLY
Community & Ecosystem
40%
Protocol Treasury
20%
Core Team
15%
LP & Staking Rewards
15%
Advisors & Partners
10%
Thesis

Why Parallax?

The DeFi intelligence gap is widening. As on-chain markets grow in complexity, the ability for individual traders to process information in real-time has become impossible.

"In markets where milliseconds determine alpha, human cognition is no longer the bottleneck — it's the liability."

Parallax bridges this asymmetry. By deploying specialized AI agents on Solana, we provide every participant institutional-grade intelligence.

Solana is the execution layer of choice. Sub-second finality, negligible fees, and unmatched throughput — optimal for high-frequency AI strategies.

$PRLX is the coordination primitive. Stakers govern strategy selection, earn protocol revenue, and contribute to the intelligence network — a self-reinforcing flywheel.

Copied to clipboard