0xHaM-dttl Claim
Updated 2025-03-02
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
›
⌄
with claim_txs as (
select
block_timestamp,
tx_hash,
to_address as claimant,
amount
from base.core.ez_token_transfers
where from_address = '0xeb7d383b0c77ea0bed28b42d0c288f9071bd8a7a'
and contract_address = '0x98d0baa52b2d063e780de12f615f963fe8537553'
and origin_function_signature = '0x69659658'
)
SELECT
count(*) as n_claims,
1000000000 as "Total supply",
100000000 as "Initial Community supply",
count(DISTINCT claimant) as n_claimants,
sum(amount) as claimed_amt,
avg(amount) as avg_claimed_amt,
median(amount) as median_claimed_amt,
claimed_amt/1000000000 as "% of TS Claimed",
100 * (sum(amount) / 100000000) as claimed_percentage,
100 - claimed_percentage as unclaimed_percentage
FROM claim_txs
QueryRunArchived: QueryRun has been archived