Yousefi_1994ECO- Top 100 ECO Holders
Updated 2023-07-23
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
eco_transfers_from as (
select
from_address as address,
- sum(raw_amount) * pow(10, -18) as amount
from
ethereum.core.ez_token_transfers
where
contract_address = '0x8dbf9a4c99580fc7fd4024ee08f3994420035727'
group by
1
),
eco_transfers_to as (
select
to_address as address,
sum(raw_amount) * pow(10, -18) as amount
from
ethereum.core.ez_token_transfers
where
contract_address = '0x8dbf9a4c99580fc7fd4024ee08f3994420035727'
group by
1
),
eco_all_transfers as (
select
*
from
eco_transfers_from
union all
select
*
from
eco_transfers_to
),
eco_total_amount_transfers as (
select
Run a query to Download Data