Stream New Raydium Pools

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

Subscribe

Parameters:

ParameterTypeDescription

-

-

-

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", {}] }' --wait 1000 

Event Result Details:

FieldTypeDescription

slot

string

The slot number.

pool

object

See poolbelow for details.

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.

Sample event:

{
    “subscription”:“dd4b....ffe4,
    “result”:{
        “slot”:238609506",
        “pool”:{
             “pool”:“SOL/“,
             ”poolAddress”:“3vvjHVYs2c5xG776SxXgeMjTLXPSsKc58uUNxmYttK5K”,
             “token1Reserves”:“0”,
             “token1MintAddress”:“So11111111111111111111111111111111111111112”,
             “token1MintSymbol”:“SOL”,
             “token2Reserves”:“0”,
             “token2MintAddress”:“”,
             “token2MintSymbol”:“”,
             “openTime”:“1705042740”
         }
     }
}

Last updated