Elprognerd0 - all time
    Updated 2023-06-04
    with txs AS (
    SELECT
    x.BLOCK_TIMESTAMP as BLOCK_TIMESTAMP,
    x.TX_ID as tx,
    x.PROPOSER as user,
    y.EVENT_TYPE as type,
    y.EVENT_CONTRACT
    FROM flow.core.fact_transactions x JOIN flow.core.fact_events y ON x.TX_ID = y.TX_ID
    WHERE x.TX_SUCCEEDED = 'true'
    )

    SELECT
    count( DISTINCT tx) as "Number of total txns",
    count(DISTINCT user) as "Number of total users"
    from txs
    Run a query to Download Data