h4wkMetamask user count
    Updated 2022-06-25
    -- How many total Metamask wallet holders are there?
    -- What’s the average value of ETH held in wallets?
    -- What percentage of wallets are engaging in a higher order activity, like staking?

    select count(distinct origin_from_address) as unique_address
    from ethereum.core.fact_event_logs
    where lower(contract_address) = lower('0x881D40237659C251811CEC9c364ef91dC08D300C')
    limit 10
    Run a query to Download Data