Docs | monitor.ws
  • Welcome
  • Beta
  • 🌊Websocket
    • Quickstart
    • On-Chain Data
      • All
      • Account
      • Signer
      • Token
      • Creation
      • Migration
      • Transfer
    • Off-Chain Data
      • Pumpfun Monitor
        • King of the Hill
        • Meta
      • Dexscreener Monitor
        • Dex Paid
        • Dex Boost
  • 🌐Api
    • Quickstart
    • Transaction
      • Trade
    • On-Chain Data
      • Token
        • Metadata
        • Info
Powered by GitBook
On this page
  • Payload
  • Response
Export as PDF
  1. Websocket
  2. On-Chain Data

All

Our All Monitoring features enable you to track every event that includes your filter on Solana in real time.

For details on the supported event types, please refer to the event list available in the On-Chain data section.

Payload

Add one or more public keys to monitor by replacing pbk_n with the desired Solana public keys.

{
   "event": "listenAll",
   "content": [
      "pbk_one",
      "pbk_two",
      "..."
   ]
}

Remove one or more public keys from monitoring by replacing pbk_n with the desired Solana public keys.

{
   "event": "removeAll",
   "content": [
      "pbk_one",
      "pbk_two",
      "..."
   ]
}

Response

To know the possible structure of the returned event, please refer to the event list available in the On-Chain data section.

Filters available in the trade response

{
   "signer":[
      "solana.PublicKey",
      "..."
   ],
   "trade":{
      "user":"solana.PublicKey",
      "mint_in":"solana.PublicKey",
      "mint_out":"solana.PublicKey",
   }
}

Filters available in the creation response

{
   "signer":[
      "solana.PublicKey",
      "..."
   ],
   "trade":{
      "user":"solana.PublicKey",
      "mint_in":"solana.PublicKey",
      "mint_out":"solana.PublicKey",
   },
   "create": {
      "user": "solana.PublicKey",
      "mint": "solana.PublicKey",
  }
}

Filters available in the migration response

{
    "mint": "solana.PublicKey"
}

Filters available in the transfer response

{
    "signer":[
        "solana.PublicKey",
        "..."
     ],
    "transfer": {
        "mint": "solana.PublicKey",
        "sender": "solana.PublicKey",
        "recipient": "solana.PublicKey",
    }
}
PreviousOn-Chain DataNextAccount

Last updated 3 months ago

🌊