hesamCosmos Events Query
    Updated 2022-12-14
    SELECT
    -- date_trunc('day', block_timestamp) as Date,
    MSG_TYPE as Event,
    COUNT(DISTINCT tx_id) as "Number of Transactions"
    FROM
    cosmos.core.fact_msgs
    WHERE
    MSG_TYPE IN ('delegate', 'redelegate', 'unbond')
    GROUP BY
    1
    -- ,2
    Run a query to Download Data