boomer77wallet population
Updated 2021-11-02
99
1
2
3
4
5
6
7
8
9
10
11
12
›
⌄
with first_tx as (select from_address, min(date(block_timestamp)) as dt
from thorchain.transfers
group by 1),
price as (select date_trunc('day', block_timestamp) as dt, avg(rune_usd) as rune_price
from thorchain.prices
group by 1)
select a.dt, count (distinct a.from_address) as new_wallet_count, sum(new_wallet_count) over (order by a.dt ROWS BETWEEN unbounded preceding and current row) as cumulative_address, b.rune_price
from first_tx a
left outer join price b on a.dt = b.dt
group by 1,4
Run a query to Download Data