Yousefi_1994EUROC Holders Over Time
Updated 2023-08-19
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
euroc_transfers_from as (
select
block_timestamp,
from_address as address,
raw_amount * pow(10, -6) * -1 as amount
from
avalanche.core.ez_token_transfers
where
contract_address = '0xc891eb4cbdeff6e073e859e987815ed1505c2acd'
),
euroc_transfers_to as (
select
block_timestamp,
to_address as address,
raw_amount * pow(10, -6) as amount
from
avalanche.core.ez_token_transfers
where
contract_address = '0xc891eb4cbdeff6e073e859e987815ed1505c2acd'
),
euroc_all_transfers as (
select
*
from
euroc_transfers_from
union all
select
*
from
euroc_transfers_to
),
euroc_result_1 as (
select
date_trunc('day', block_timestamp) as days,
address,
Run a query to Download Data