Stream New Raydium Pools by Transaction

This channel provides pool creation transaction 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": ["GetNewRaydiumPoolsByTransactionStream", {}] }' --wait 1000 

Event Result Details:

FieldTypeDescription

slot

string

The slot number.

signature

string

The signature of the pool creation transaction.

poolCreatorWallet

string

The pool creator's wallet address.

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":"296354460",
              "signature":"2n3suwt15B4fFrwFahJJpZH3C9JX2ugzWMwN9UnAx4fNka99157sfi3k7jBECXAGccNFK1knw3pFtvWbwqhXERty",
              "poolCreatorWallet":"39azUYFWPz3VHgKCf3VChUwbpURdCHRxjWVowf5jUJjg",
              "pool":{
                  "pool":"",
                  "poolAddress":"GphtRgfDcQPCnPH9tGZfBmHeWcUTKajcaPsAWRMqncG9",
                  "token1Reserves":"79005359328",
                  "token1MintAddress":"So11111111111111111111111111111111111111112",
                  "token1MintSymbol":"",
                  "token2Reserves":"206900000000000",
                  "token2MintAddress":"ASuLL9SrJwnUVxDHaX5igty1Ms4DNf3yBoYVmkAvpump",
                  "token2MintSymbol":"",
                  "openTime":"0",
                  "poolType":"standard",
                  "liquidityPoolKeys":null
              },
          "timestamp":"2024-10-18T17:55:49.817129983Z"
          }
     }
}

Last updated