CLAIMS | USERS | VOLUME | AVERAGE_AMOUNT | MAX_AMOUNT | |
---|---|---|---|---|---|
1 | 863587 | 784704 | 334564670.02 | 436.37883407 | 1594352 |
Afonso_DiazTotal
Updated 2025-03-03
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
›
⌄
with
main as (
select
tx_id,
block_timestamp,
signers[0] as user,
--credited to @pine
iff(tx_id in (select distinct tx_id from solana.core.fact_events b where a.tx_id = b.tx_id and program_id = 'voTpe3tHQ7AjQHMapgSue2HJFAh2cGsdokqN3XqmVSj' and block_timestamp >= '2025-01-15'), 'Claim', 'Claim & Stake') as claim_type,
inner_instruction['instructions'][1]['parsed']['info']['amount'] / 1e6 as amount
from
solana.core.fact_events a
where
program_id = 'DiS3nNjFVMieMgmiQFm6wgJL7nevk4NrhXKLbtEH1Z2R'
and block_timestamp >= '2025-01-22'
)
select
count(distinct tx_id) as claims,
count(distinct user) as users,
sum(amount) as volume,
avg(amount) as average_amount,
max(amount) as max_amount
from
main
Last run: 25 days ago
1
51B
2s