bergActive Wallets per day
Updated 2022-09-22Copy Reference Fork
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
›
⌄
with t1 as (
select
date_trunc('day', block_timestamp) as date,
tx_receiver as wallet_address,
(deposit / pow(10, 24)) as deposit_amount
from near.core.fact_transfers
where status = true and (
tx_signer = 'sweat_welcome.near' or
tx_signer like 'sweat_oracle_%.near'
)
having 0.05 >= deposit_amount
)
select date, count(distinct(wallet_address)) as "Number of Wallets" from t1
where date >= current_date - interval '1 months'
group by date
order by date
Run a query to Download Data