CATEGORY | USER_ADDRESS | STAKE_AMOUNTS | |
---|---|---|---|
1 | Silver | 1136 | 3301354.86648718 |
2 | Gold | 49 | 137445013.293241 |
3 | Uncategorized | 1837 | 8172626.75650736 |
4 | Blue | 278 | 3774184.0685743 |
freemartianCards
Updated 2025-03-23
999
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 claims as (
select
-- *
block_timestamp, tx_hash, to_address as user_address, amount,
from base.core.ez_token_transfers
where from_address = '0xeb7d383b0c77ea0bed28b42d0c288f9071bd8a7a'
and contract_address = '0x98d0baa52b2d063e780de12f615f963fe8537553'
and origin_function_signature = '0x69659658'
-- and tx_hash = '0x86a6bacdce3799c129a3b596a506bb6aa73b1d885e80179f46624fe8fdbda201'
),
stakes as (
select
block_timestamp, tx_hash, origin_from_address as user_address, amount, 'stake' as label
from base.core.ez_token_transfers
where origin_function_signature = '0x6e553f65'
and contract_address = '0x98d0baa52b2d063e780de12f615f963fe8537553'
and origin_to_address = '0x548d3b444da39686d1a6f1544781d154e7cd1ef7'
-- and from_address = '0x0000000000000000000000000000000000000000'
-- and tx_hash = '0xbbb7bd642c374163d57fb3edc9d776d3144c47db1456b7ca441abccc5061ccb4'
union all
select
block_timestamp,tx_hash, origin_from_address as user_address, -amount as amount, 'unstake' as label
from base.core.ez_token_transfers
where origin_function_signature = '0x9343d9e1'
and from_address = '0x548d3b444da39686d1a6f1544781d154e7cd1ef7'
and contract_address = '0x98d0baa52b2d063e780de12f615f963fe8537553'
order by 1 asc
),
final as (
select
c.user_address,
SUM(c.amount) as claim_amount,
SUM(s.amount) as stake_amount
Last run: 12 days ago
4
132B
8s