Stream New Raydium Pools

This channel provides pool reserve information for any newly created Raydium pools

Subscribe

Parameters:

ParameterTypeDescription

includeCPMM

boolean

OPTIONAL. Specify if you want to include the Raydium CPMM pool creation event.

Subscribe sample:

wscat --header "Authorization: $AUTH_HEADER" \
-c wss://uk.solana.dex.blxrbdn.com/ws --execute ' {"jsonrpc": "2.0", "id": 1, "method": "subscribe", "params": ["GetNewRaydiumPoolsStream", {"includeCPMM": true}] }' --wait 1000 

Event Result Details:

FieldTypeDescription

slot

string

The slot number.

pool

object

See poolbelow for details.

timestamp

google.protobuf.Timestamp

Timestamp of the event.

pool

FieldTypeDescription

pool

string

The symbol of the pool.

poolAddress

string

The program address of the pool

token1MintAddress

string

The program address of token 1.

token1MintSymbol

string

The symbol of token 1.

token1Reserves

number

The amount of the token 1 in its reserve.

token2MintAddress

string

The program address of token 2.

token2MintSymbol

string

The symbol of token 2.

token2Reserves

number

The amount of the token 2 in its reserve.

openTime

unit64

The timestamp for opening the swap function of this pool.

poolType

string

Showing the pool type. Potential value: "standard", "cpmm".

Sample event:

{
     "jsonrpc":"2.0",
     "method":"subscribe",
     "params":{
          "subscription":"904a...c61",
          "result":{
               "slot":"274558076",
               "pool":{
                    "pool":"/",
                    "poolAddress":"5o57r3r8JSJhfaZWN5im6Ngirp2AJHk5dfUBuzhMgdPd",
                    "token1Reserves":"79005359255",
                    "token1MintAddress":"So11111111111111111111111111111111111111112",
                    "token1MintSymbol":"",
                    "token2Reserves":"206900000000000",
                    "token2MintAddress":"2eFYMcxVhzXzEwbuMaAWx8BGCGMJ3ihPRvpRQ9JUpump",
                    "token2MintSymbol":"",
                    "openTime":"0",
                    "poolType":"standard"
                    
               },
               "timestamp":"2024-06-28T20:39:14.890810982Z"
          }
     }
}

Last updated