0-MIDtop 20 validators by volume before
    Updated 2023-01-23
    select
    VALIDATOR_LABEL
    ,sum(AMOUNT) as "STAKING VOLUME"
    from terra.core.ez_staking
    where BLOCK_TIMESTAMP>='2023-01-07' and BLOCK_TIMESTAMP<='2023-01-13'
    and ACTION='Delegate'
    and VALIDATOR_LABEL is not null
    group by 1
    order by 2 desc
    limit 20
    Run a query to Download Data