Migration

Our Token Migrations Monitoring features enable you to track token Migration on Pump.fun in real time.

Payload

You can use multiple token migration parameters simultaneously.

  • All token migration events: content field is empty ("")

Add one or more token migration events to monitor by replacing value_n with the desired token migration parameters.

{
   "event": "listenTokenMigration",
   "content": [
      "value_one",
      "value_two",
      "..."
   ]
}

Remove one or more token migration events from monitoring by replacing value_n with the desired token migration parameters.

{
   "event": "removeTokenMigration",
   "content": [
      "value_one",
      "value_two",
      "..."
   ]
}

Response

If you need more information, feel free to contact us on our Telegram.

{
   "signature":"solana.Signature",
   "signer":[
      "solana.PublicKey",
      "..."
   ],
   "migrate":{
      "mint":"solana.PublicKey",
      "amm":"solana.PublicKey"
   },
   "pool":{
      "type":"string",
      "pairs":[
         {
            "mint":"solana.PublicKey",
            "amount":float64,
            "decimals":"int"
         },
         {
            "mint":"solana.PublicKey",
            "amount":float64,
            "decimals":"int"
         }
      ],
      "marketcap":float64,
      "marketcap_usd":float64
   },
   "details":{
      "slot":uint64,
      "block_height":uint64,
      "timestamp":int64
   }
}

Last updated