nethermindnarutCosmos Hub - Daily Active Addresses
    Updated 2023-05-09
    SELECT
    BLOCK_TIMESTAMP::DATE AS Day,
    COUNT(DISTINCT(TX_FROM)) AS Active_Addresses
    FROM cosmos.core.fact_transactions
    WHERE BLOCK_TIMESTAMP >= {{start_date}}
    GROUP BY Day
    ORDER BY Day;
    Run a query to Download Data