nickpayiatis_Users per day
Updated 2023-03-04
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
›
⌄
with users_year as (
select
count(distinct tx_signer) as "Active Wallets"
from near.core.fact_transactions
where block_timestamp::date >= current_date()-366
)
,users_month as (
select
count(distinct tx_signer) as "Active Wallets"
from near.core.fact_transactions
where block_timestamp::date >= current_date()-31
)
select * from users_year
union all
select * from users_month