Skip to main content

Exchange Protocols

Nefarious tracks on-chain exchange positions across 2 protocols on Solana — from Jupiter’s DCA and limit orders to Whales Market OTC positions.

Position Types

TypeDescription
liquidityOn-chain orders and positions with locked tokens

Track all on-chain Jupiter DCA schedules and limit orders. See exactly how much is locked, what’s been filled, and pending execution amounts.Position types: liquidity
{
  "protocol": {
    "id": "jupiter",
    "name": "Jupiter Exchange",
    "url": "https://jup.ag",
    "category": "exchange"
  },
  "totalValueUsd": 11700.00,
  "totalDepositedUsd": 11700.00,
  "totalBorrowedUsd": 0,
  "positions": [
    {
      "id": "jup-limit-sol-usdc",
      "type": "liquidity",
      "name": "SOL Limit Order",
      "valueUsd": 7500.00,
      "tokens": [
        {
          "mint": "So11111111111111111111111111111111111111112",
          "symbol": "SOL",
          "name": "Solana",
          "amount": "50000000000",
          "amountUsd": 7500.00,
          "decimals": 9
        }
      ]
    },
    {
      "id": "jup-dca-usdc-sol",
      "type": "liquidity",
      "name": "USDC → SOL DCA",
      "valueUsd": 4200.00,
      "tokens": [
        {
          "mint": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
          "symbol": "USDC",
          "name": "USD Coin",
          "amount": "4200000000",
          "amountUsd": 4200.00,
          "decimals": 6
        }
      ]
    }
  ]
}
OTC trading platform for pre-market tokens, points, and allocations. Track all active market positions.Position types: liquidity
{
  "protocol": {
    "id": "whalesmarket",
    "name": "Whales Market",
    "url": "https://whales.market",
    "category": "exchange"
  },
  "totalValueUsd": 1500.00,
  "totalDepositedUsd": 1500.00,
  "totalBorrowedUsd": 0,
  "positions": [
    {
      "id": "whales-position-abc",
      "type": "liquidity",
      "name": "Pre-market Position",
      "valueUsd": 1500.00,
      "tokens": [
        {
          "mint": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
          "symbol": "USDC",
          "name": "USD Coin",
          "amount": "1500000000",
          "amountUsd": 1500.00,
          "decimals": 6
        }
      ]
    }
  ]
}