binhachonCopy of 10. [Hard] New vs. Existing Holders - Monthly chart
Updated 2021-12-20
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 ens_registration as (
select
distinct block_timestamp,
tx_id,
origin_address,
row_number() over (
partition by origin_address
order by
block_timestamp
) as rownumber
from
ethereum.udm_events
where
contract_address = '0x283af0b28c62c092c9727f1ee09c02ca627eb7f5'
and origin_function_name ilike '%register%'
),
btc_price as (
select
date_trunc('week', hour) as week,
avg(price) as price
from
ethereum.token_prices_hourly
where
symbol = 'WETH'
group by
week
)
select
date_trunc('week', block_timestamp) as blocktime,
count(tx_id) as number_of_registrations,
count_if(rownumber = 1) as address_register_first_domain,
count(distinct origin_address) - address_register_first_domain as address_register_additional_domain,
address_register_first_domain / address_register_additional_domain as ratio,
address_register_first_domain / number_of_registrations as ratio1,
price
from
Run a query to Download Data