pimi1356-HdnUm3Transactions and unique addresses on Polygon
    Updated 2022-07-11
    SELECT COUNT(DISTINCT TX_HASH) as "Number of Transactions",
    COUNT(DISTINCT FROM_ADDRESS) as "Unique Addresses"
    from polygon.core.fact_transactions
    where BLOCK_TIMESTAMP>='2022-07-01'
    and STATUS='SUCCESS'
    Run a query to Download Data