MLDZMNpolybridge11
Updated 2022-07-31
99
1
2
3
4
5
6
7
8
9
10
›
⌄
select
BLOCK_TIMESTAMP::date as day,
count(distinct EVENT_INPUTS:to) as users,
count(tx_hash) as txn
from polygon.core.fact_event_logs
where ORIGIN_FROM_ADDRESS=ORIGIN_TO_ADDRESS
and ORIGIN_TO_ADDRESS='0x0000000000000000000000000000000000000000'
and EVENT_NAME='Transfer'
group by DAY
order by day
Run a query to Download Data