WALLETS | TOTAL_OP | AVG_OP | GROUPS | |
---|---|---|---|---|
1 | 3402 | 787253.789483983 | 231.409109196 | 100_500 OP |
2 | 153 | 524152.727408038 | 3425.83481966 | 3-4k OP |
3 | 5798 | 269095.418510533 | 46.411765869 | less than 100 OP |
4 | 232 | 568029.646880405 | 2448.403650347 | 2-3k OP |
5 | 59 | 322366.974367248 | 5463.847023174 | 5-6k OP |
6 | 599 | 845457.776636661 | 1411.448708909 | 1-2k OP |
7 | 382 | 2292000 | 6000 | 6k OP |
8 | 98 | 445124.916417182 | 4542.090983849 | 4-5k OP |
9 | 900 | 632420.116532059 | 702.689018369 | 500_1k OP |
mo1151- OP 4th airdrop - groups
Updated 2025-03-16
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
›
⌄
with wallets as (select
TO_ADDRESS as wallet,
AMOUNT as op,
case when op <=100 then 'less than 100 OP'
when (op <=500 and op>100) then '100_500 OP'
when (op <=1000 and op>500) then '500_1k OP'
when (op <=2000 and op>1000) then '1-2k OP'
when (op <=3000 and op>2000) then '2-3k OP'
when (op <=4000 and op>3000) then '3-4k OP'
when (op <=5000 and op>4000) then '4-5k OP'
when (op <6000 and op>5000) then '5-6k OP'
when (op =6000 ) then '6k OP'
else null end as groups
from optimism.core.ez_token_transfers
where FROM_ADDRESS= '0xfb4d5a94b516df77fbdbcf3cfeb262baaf7d4db7'
and CONTRACT_ADDRESS = '0x4200000000000000000000000000000000000042'
)
select count(wallet) as wallets, sum(op) as total_op, (total_op/wallets) as avg_op,groups
from wallets
group by groups
Last run: 2 months ago
9
421B
5s