NEXO
Launch App
Back to Docs
Getting Started5 min read

Quick Start Guide

Get up and running with NEXO in under 5 minutes

Step 1: Connect Your Wallet

Navigate to the NEXO app and connect your Solana wallet. We support all major wallets including Phantom, Solflare, Ledger, and more.

typescript
// Using the NEXO SDK
import { NexoClient } from '@nexo/sdk';

const client = new NexoClient({
  network: 'mainnet-beta',
  wallet: yourWalletAdapter
});

Step 2: Configure Protection Settings

Choose your preferred protection level. We recommend starting with "Standard" protection which provides excellent MEV protection with minimal latency impact.

Step 3: Execute Your First Transaction

Submit a transaction through NEXO. Our system will automatically analyze the transaction, apply MEV protection, and route it through the optimal path.

typescript
// Execute a protected swap
const result = await client.executeSwap({
  inputMint: 'SOL',
  outputMint: 'USDC',
  amount: 1000000000, // 1 SOL in lamports
  slippage: 0.5, // 0.5%
  protection: 'standard'
});

console.log('Transaction:', result.signature);

Step 4: Monitor Your Transaction

Track your transaction status in real-time through the NEXO dashboard. You will see confirmation status, any MEV attempts that were blocked, and final execution details.

Next Steps