hessTotal Unique Users Bridged to Polygon
    Updated 2022-08-01
    with bridge as ( select block_timestamp , event_inputs:to as wallet
    from polygon.core.fact_event_logs
    where ORIGIN_FROM_ADDRESS = '0x0000000000000000000000000000000000000000' and ORIGIN_TO_ADDRESS = '0x0000000000000000000000000000000000000000'
    and event_inputs:from = '0x0000000000000000000000000000000000000000'
    )

    select count(DISTINCT(wallet)) as total
    from bridge

    Run a query to Download Data