sagharkariWeekly
    Updated 2023-05-11
    select date_trunc (week,block_timestamp) as date,
    case when action in ('DelegatorTokensCommitted','TokensCommitted') then 'Stake'
    when action in ('DelegatorUnstakedTokensWithdrawn','UnstakedTokensWithdrawn') then 'Unstake'
    when action in ('DelegatorRewardTokensWithdrawn','RewardTokensWithdrawn') then 'Claim Reward' end as action_type,
    count (distinct tx_id) as TX_Count,
    count (distinct delegator) as Users_Count,
    count (distinct node_id) as Nodes_Count,
    sum (amount) as Total_Volume,
    avg (amount) as Average_Volume,
    median (amount) as Median_Volume,
    min (amount) as Min_Volume,
    max (amount) as Max_Volume,
    sum (TX_Count) over (partition by action_type order by date) as Cumulative_TX_Count,
    sum (Total_Volume) over (partition by action_type order by date) as Cumulative_Volume
    from flow.core.ez_staking_actions
    where tx_succeeded = 'TRUE'
    group by 1,2
    Run a query to Download Data