SLOT_LABEL | BINNED_DATA | CUM_COUNTS | CDF_VALUE | |
---|---|---|---|---|
1 | 1° Slot | 0.13 | 1207 | 0.928462 |
2 | 1° Slot | 0.095 | 1111 | 0.854615 |
3 | 1° Slot | 0.01 | 33 | 0.025385 |
4 | 1° Slot | 0.065 | 941 | 0.723846 |
5 | 1° Slot | 0.175 | 1274 | 0.98 |
6 | 1° Slot | 0.115 | 1161 | 0.893077 |
7 | 1° Slot | 0.05 | 772 | 0.593846 |
8 | 1° Slot | 0.125 | 1195 | 0.919231 |
9 | 1° Slot | 0.135 | 1221 | 0.939231 |
10 | 1° Slot | 0.09 | 1094 | 0.841538 |
11 | 1° Slot | 0.06 | 900 | 0.692308 |
12 | 1° Slot | 0.195 | 1298 | 0.998462 |
13 | 1° Slot | 0.085 | 1072 | 0.824615 |
14 | 1° Slot | 0.145 | 1242 | 0.955385 |
15 | 1° Slot | 0.045 | 689 | 0.53 |
16 | 1° Slot | 0.18 | 1281 | 0.985385 |
17 | 1° Slot | 0.14 | 1231 | 0.946923 |
18 | 1° Slot | 0.08 | 1055 | 0.811538 |
19 | 1° Slot | 0.17 | 1269 | 0.976154 |
20 | 1° Slot | 0.03 | 407 | 0.313077 |
MostlyData_Slot fee mod4 by leader
Updated 2025-01-21
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
with leader_blocks_fee as(
select
block_id,
reward_amount_sol
from solana.gov.fact_rewards_fee
where
pubkey = '{{leader}}'
and ( (
'{{n_days}}' = 0
and block_timestamp >= cast('{{start_date}}' as timestamp)
and block_timestamp < cast('{{end_date}}' as timestamp)
)
or
(
'{{n_days}}' != 0
and block_timestamp > current_date() - interval '{{n_days}} days'
))
and reward_amount_sol < '{{fee_threshold}}'
)
,ordered_slots as (
select
*,
row_number() over (order by block_id) as row_num
from leader_blocks_fee
)
,grouped_slots as (
select
block_id,
reward_amount_sol,
floor((row_number() over (order by block_id) - 1) / 4) as group_id,
Last run: 3 months ago
...
160
5KB
1s