MLDZMNpolybridge11
    Updated 2022-07-31
    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