Stream Bundle Tip

This channel provides you with percentiles for recent bundle tips.

Be aware that using a suggested tip does not guarantee your transaction will be included in the future slot.

Subscribe

Parameters:

ParameterTypeDescription

-

-

-

Subscribe sample:

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

Event Result Details:

FieldsTypeDescription

timestamp

string

The timestamp when the sample was taken.

percentile25

uint64

How much tip was paid at the 25th percentile.

percentile50

uint64

How much tip was paid at the 50th percentile.

percentile75

uint64

How much tip was paid at the 75th percentile.

percentile95

uint64

How much tip was paid at the 95th percentile.

percentile99

uint64

How much tip was paid at the 99th percentile.

emaPrcentile50

uint64

The 1-minute Exponential Moving Average (EMA) for the 50th percentile tip.

Sample event:

{
    "jsonrpc":"2.0",
    "method":"subscribe",
    "params":{
        "subscription":"8df27f43-7cce-4d39-a343-34d95adce1c6",
        "result":{
            "timestamp":"2024-04-16T16:24:00Z",
            "percentile25":0.0000824995,
            "percentile50":0.00030500000000000004,
            "percentile75":0.0016958975000000002,
            "percentile95":0.007480826000000012,
            "percentile99":0.01771670918000002,
            "emaPercentile50":0.0003036570280109619           
        }
    }
}

Last updated