Elprognerd1-overal: https://app.flipsidecrypto.com/velocity/queries/2947946f-3125-49fe-b02c-b1cdf88b1e6f
    Updated 2023-01-04
    SELECT
    action,
    count(distinct tx_hash) as "Number of Total TXs",
    count(distinct tx_signer) as "Number of Total Users",
    --count(distinct POOL_ADDRESS) as "Total Number of Pools",
    sum(stake_amount/pow(10, 24)) as "Total Volume"
    FROM near.core.dim_staking_actions
    WHERE action in ('Stake', 'Unstake')
    group by 1
    order by 2 DESC
    Run a query to Download Data