mlhosmosis distinct users
    Updated 2022-06-02
    SELECT
    block_timestamp::date AS date,
    COUNT(DISTINCT TX_FROM) AS users
    FROM osmosis.core.fact_transactions
    GROUP BY 1

    Run a query to Download Data