sofiatCopy of dydx balances
Updated 2023-01-25
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
32
33
34
35
36
›
⌄
with transfers as (
select
date_trunc('day', block_timestamp) as date,
tx_hash,
from_address as address,
-raw_amount as amount,
contract_address
from ethereum.core.fact_token_transfers
where contract_address = '0x92d6c1e31e14520e676a687f0a93788b716beff5'
and date_trunc('day', block_timestamp) < '2023-01-01'
union all
select
date_trunc('day', block_timestamp) as date,
tx_hash,
to_address as address,
raw_amount as amount,
contract_address
from ethereum.core.fact_token_transfers
where contract_address = '0x92d6c1e31e14520e676a687f0a93788b716beff5'
and date_trunc('day', block_timestamp) < '2023-01-01'
)
select address,
sum(amount)/1e18 as holdings,
case when holdings > 0 and holdings <= 100 then 'Holders'
when holdings > 100 and holdings <= 1000 then 'Small Investors'
when holdings > 1000 and holdings <= 10000 then 'Medium Investors'
when holdings > 10000 and holdings <= 100000 then 'Large Investors'
when holdings > 100000 then 'Whales'
else 'Other' end as category
from transfers
group by 1
having holdings > 0
order by 2 desc;
Run a query to Download Data