Updated 2023-05-02
    select
    date_trunc (week,block_timestamp) as date,
    count (distinct VALIDATOR_ADDRESS) as Nodes
    from terra.core.ez_staking
    where tx_succeeded = 'TRUE'
    group by 1
    Run a query to Download Data