> ## Documentation Index
> Fetch the complete documentation index at: https://docs.nefariouslabs.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Exchange Protocols

> Track on-chain limit orders, DCA schedules, and OTC positions across Solana exchange protocols.

# 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

| Type        | Description                                      |
| ----------- | ------------------------------------------------ |
| `liquidity` | On-chain orders and positions with locked tokens |

***

<AccordionGroup>
  <Accordion title="Jupiter (DCA & Limit Orders)" icon="right-left">
    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`

    <CodeGroup>
      ```json Response Example theme={null}
      {
        "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
              }
            ]
          }
        ]
      }
      ```
    </CodeGroup>
  </Accordion>

  <Accordion title="Whales Market" icon="right-left">
    OTC trading platform for pre-market tokens, points, and allocations. Track all active market positions.

    **Position types:** `liquidity`

    <CodeGroup>
      ```json Response Example theme={null}
      {
        "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
              }
            ]
          }
        ]
      }
      ```
    </CodeGroup>
  </Accordion>
</AccordionGroup>
