sagharkariDelegatorTokensCommitted
    Updated 2022-11-11
    select DELEGATOR as STAKER , count(DISTINCT(tx_id)) as STACK_COUNT, sum(amount) as total_flow
    from flow.core.ez_staking_actions
    where action in ('DelegatorTokensCommitted')
    group by 1
    order by 3 desc
    limit 10

    Run a query to Download Data