bachimiso3
    Updated 2022-09-19
    with ethereum_users as (
    select
    date(block_timestamp) as day,
    count(distinct origin_from_address) as no_of_users
    from
    ethereum.core.fact_event_logs
    where
    topics[0] = lower(
    '0x077511a636ba1f10551cc7b89c13ff66a6ac9344e8a917527817a9690b15af7a'
    )
    and tx_status = 'SUCCESS'
    group by
    day
    order by
    day desc
    ),
    arbitrum_users as (
    select
    date(block_timestamp) as day,
    count(distinct origin_from_address) as no_of_users
    from
    arbitrum.core.fact_event_logs
    where
    topics[0] = lower(
    '0x077511a636ba1f10551cc7b89c13ff66a6ac9344e8a917527817a9690b15af7a'
    )
    and tx_status = 'SUCCESS'
    group by
    1
    ),
    polygon_users as (
    select
    date(block_timestamp) as day,
    count(distinct origin_from_address) as no_of_users
    from
    polygon.core.fact_event_logs
    Run a query to Download Data