DrsimonDaily number of ETHREUM unique users
    Updated 2022-07-19
    SELECT date_trunc('day', Block_timestamp) as eth_date ,
    count(DISTINCT from_address) as eth_unique_user
    FROM ethereum.core.fact_transactions
    WHERE eth_date between '2022-06-01' and '2022-07-01'
    group by eth_date
    Run a query to Download Data