maybeyonasmetamask_users_total
    Updated 2022-06-23
    with
    metamask_users as (
    select
    block_timestamp,
    from_address as user,
    tx_hash
    from ethereum.core.fact_transactions
    where to_address = lower('0x881D40237659C251811CEC9c364ef91dC08D300C')
    )

    select
    count(distinct user) as users
    from metamask_users
    Run a query to Download Data