WALLET_ADDRESS | STATE | |
---|---|---|
1 | 0x0038afa8b120000857cc3fee3736ca8354928463 | Staked |
2 | 0x0039e270039d0b911b69e7a17faa6b7062643125 | Staked |
3 | 0x0067511915c1b98f89ef1407c008fc9a4ee800e6 | Tipped To Other Users |
4 | 0x0067511915c1b98f89ef1407c008fc9a4ee800e6 | Swapped Out |
5 | 0x006e2b826039cc364c06b268220f5f8df83bb026 | Staked |
6 | 0x007761dd62fd2d6f8c13e46adf93fbc527e15c49 | Staked |
7 | 0x0098ba770688d29b82e675cc8a42f8172f31c6d0 | Staked |
8 | 0x00a687c31e5351bcdae4f8a1ccd0900426ce5e62 | Staked |
9 | 0x00ddff49b1331644ce44637a2ab867a5d231e1e4 | Staked |
10 | 0x00f740103363d9791ea86d2e1d93d18d902ca85a | Staked |
11 | 0x00f740103363d9791ea86d2e1d93d18d902ca85a | Tipped To Other Users |
12 | 0x0116bac865e087ce6f7e53e123869a16bf0368cb | Holding |
13 | 0x0116bac865e087ce6f7e53e123869a16bf0368cb | Holding |
14 | 0x011a7b2ce788835ba6a8271c366573cdf5b38292 | Staked |
15 | 0x0141a5541b84689867c49e07083cfc65197790c1 | Holding |
16 | 0x0141a5541b84689867c49e07083cfc65197790c1 | Holding |
17 | 0x0141a5541b84689867c49e07083cfc65197790c1 | Holding |
18 | 0x0141a5541b84689867c49e07083cfc65197790c1 | Holding |
19 | 0x014dc18656214c99c0acc63c961a7c1a6363dd34 | Holding |
20 | 0x014dc18656214c99c0acc63c961a7c1a6363dd34 | Holding |
Ali3NWhat Has Each User Done With His/Her $ARENA Airdrop ($ARENA Airdrop 9 March 2025)
Updated 2025-03-29
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 claimrewardst as (
select distinct tx_hash
from avalanche.core.ez_decoded_event_logs
where origin_to_address = '0xeffb809d99142ce3b51c1796c096f5b01b4aaec4'
and event_name = 'Transfer'
and origin_function_signature = '0x2e1a7d4d'
and contract_address = '0xb8d7710f7d8349a506b75dd184f05777c82dad0c'
--and topics[0] = '0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef'
--and origin_from_address = decoded_log:to
and decoded_log:value/1e18 = '0'
and block_timestamp >= '2025-03-09 23:00:00.000'
group by 1),
claimerst as (
select block_timestamp as claim_date,
to_address as claimer,
amount as Claimed_Amount
from avalanche.core.ez_token_transfers t1
where tx_hash in (select distinct tx_hash from claimrewardst)),
staket as (
select origin_from_address,
sum (decoded_log:value/1e18) as Staked_Amount
from avalanche.core.ez_decoded_event_logs t1 join claimerst t2 on t1.origin_from_address = t2.claimer and t1.decoded_log:value/1e18 <= t2.claimed_amount and t1.block_timestamp > t2.claim_date
where origin_to_address = '0xeffb809d99142ce3b51c1796c096f5b01b4aaec4'
and event_name = 'Transfer'
and origin_function_signature = '0xb6b55f25'
and contract_address = '0xb8d7710f7d8349a506b75dd184f05777c82dad0c'
and origin_from_address = decoded_log:from
group by 1),
unstaket as (
select origin_from_address,
sum (decoded_log:value/1e18) as UnStaked_Amount
from avalanche.core.ez_decoded_event_logs t1 join claimerst t2 on t1.origin_from_address = t2.claimer and t1.decoded_log:value/1e18 <= t2.claimed_amount and t1.block_timestamp > t2.claim_date
where origin_to_address = '0xeffb809d99142ce3b51c1796c096f5b01b4aaec4'
Last run: 27 days agoAuto-refreshes every 24 hours
...
3422
191KB
367s