JimMyersTechPolygon Daily TX Count
    Updated 2022-12-03
    SELECT
    date_trunc('day', block_timestamp),
    count(distinct tx_id)
    FROM polygon.events_emitted where block_timestamp >= getdate() - interval'6 months' group by 1 order by 1 desc;
    Run a query to Download Data