par_rnActivity of Solana users since September
    Updated 2022-12-24
    select
    'NFTs' as activity,
    count(tx_id) as no_txn
    from solana.core.fact_nft_sales
    where SUCCEEDED='TRUE'
    and BLOCK_TIMESTAMP>='2022-09-01'
    group by 1
    union all
    select
    'NFTs' as activity,
    count(tx_id) as no_txn
    from solana.core.fact_nft_mints
    where SUCCEEDED='TRUE'
    and BLOCK_TIMESTAMP>='2022-09-01'
    group by 1
    union all
    select
    'stake' as activity,
    count(tx_id) as no_txn
    from solana.core.fact_events
    where EVENT_TYPE in ('delegate')
    and BLOCK_TIMESTAMP>='2022-09-01'
    group by 1
    union all
    select
    'unstake' as activity,
    count(tx_id) as no_txn
    from solana.core.fact_events
    where EVENT_TYPE='withdraw'
    and BLOCK_TIMESTAMP>='2022-09-01'
    group by 1

    union all
    select
    'Add liquidity' as activity,
    Run a query to Download Data