elsinaDaily Polygon active wallets
Updated 2022-07-31
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
›
⌄
WITH
active_users_n as (
SELECT
trunc(block_timestamp,'day') as date,
count(distinct from_address) as active_users
from polygon.core.fact_transactions
group by 1
),
active_users_2_n as (
SELECT
trunc(block_timestamp,'day') as date,
count(distinct to_address) as active_users
from polygon.core.fact_transactions
group by 1
)
select 'Doing transactions' as type,* from active_users_n
UNION
select 'Receiving tokens' as type,* from active_users_2_n
order by date
Run a query to Download Data