DATE | HOUR | Claimed $PENGU | Cum. Claimed $PENGU | # Claimers | Cum. # Claimers | |
---|---|---|---|---|---|---|
1 | 2025-01-29 19:00:00.000 | 2025-01-29 14:00:00.000 | 114573 | 26790027315 | 4 | 1375150 |
2 | 2025-01-29 18:00:00.000 | 2025-01-29 13:00:00.000 | 463944 | 26789912742 | 40 | 1375146 |
3 | 2025-01-29 17:00:00.000 | 2025-01-29 12:00:00.000 | 94170 | 26789448798 | 41 | 1375106 |
4 | 2025-01-29 16:00:00.000 | 2025-01-29 11:00:00.000 | 371238 | 26789354628 | 45 | 1375065 |
5 | 2025-01-29 15:00:00.000 | 2025-01-29 10:00:00.000 | 127545 | 26788983390 | 35 | 1375020 |
6 | 2025-01-29 14:00:00.000 | 2025-01-29 09:00:00.000 | 105351 | 26788855845 | 31 | 1374985 |
7 | 2025-01-29 13:00:00.000 | 2025-01-29 08:00:00.000 | 243011 | 26788750494 | 32 | 1374954 |
8 | 2025-01-29 12:00:00.000 | 2025-01-29 07:00:00.000 | 91146 | 26788507483 | 46 | 1374922 |
9 | 2025-01-29 11:00:00.000 | 2025-01-29 06:00:00.000 | 351988 | 26788416337 | 66 | 1374876 |
10 | 2025-01-29 10:00:00.000 | 2025-01-29 05:00:00.000 | 272194 | 26788064349 | 44 | 1374810 |
11 | 2025-01-29 09:00:00.000 | 2025-01-29 04:00:00.000 | 362366 | 26787792155 | 48 | 1374766 |
12 | 2025-01-29 08:00:00.000 | 2025-01-29 03:00:00.000 | 158085 | 26787429789 | 33 | 1374718 |
13 | 2025-01-29 07:00:00.000 | 2025-01-29 02:00:00.000 | 89221 | 26787271704 | 21 | 1374685 |
14 | 2025-01-29 06:00:00.000 | 2025-01-29 01:00:00.000 | 294758 | 26787182483 | 36 | 1374664 |
15 | 2025-01-29 05:00:00.000 | 2025-01-29 00:00:00.000 | 980039 | 26786887725 | 29 | 1374628 |
16 | 2025-01-29 04:00:00.000 | 2025-01-28 23:00:00.000 | 3613130 | 26785907686 | 44 | 1374599 |
17 | 2025-01-29 03:00:00.000 | 2025-01-28 22:00:00.000 | 15022648 | 26782294556 | 66 | 1374555 |
18 | 2025-01-29 02:00:00.000 | 2025-01-28 21:00:00.000 | 295705 | 26767271908 | 38 | 1374489 |
19 | 2025-01-29 01:00:00.000 | 2025-01-28 20:00:00.000 | 2713144 | 26766976203 | 25 | 1374451 |
20 | 2025-01-29 00:00:00.000 | 2025-01-28 19:00:00.000 | 1910098 | 26764263059 | 40 | 1374426 |
ArioQ1
Updated 2025-01-29
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
›
⌄
with claim_TXs as (
select
block_timestamp,
tx_id,
tx_to,
amount
from solana.core.fact_transfers
where tx_from = '3HA76bpwHuST6Uo9BouJ4A5GpAiDuerr7QBenUqbXZAL'
and mint = '2zMMhcVQEXDtdE6vsFS7S7D5oUodfJHE8vd1gnBouauv'
)
select
date_trunc(hour, block_timestamp) as date,
CONVERT_TIMEZONE('UTC', 'America/New_York', date) as hour,
sum(amount) as "Claimed $PENGU",
sum("Claimed $PENGU") over(order by date) as "Cum. Claimed $PENGU",
count(distinct tx_to) as "# Claimers",
sum("# Claimers") over(order by date) as "Cum. # Claimers"
from claim_txs
where CONVERT_TIMEZONE('UTC', 'America/New_York', block_timestamp) >= '2024-12-17 08:00:00.000'
group by 1
order by hour desc
Last run: 2 months ago
...
1038
87KB
126s