Arkannstaking 10
    Updated 2023-01-20
    SELECT
    B.LABEL as lable,
    sum(AMOUNT*power(10,-DECIMAL)) as amount
    FROM
    osmosis.core.fact_staking A
    LEFT OUTER JOIN osmosis.core.dim_labels B on A.VALIDATOR_ADDRESS = B.ADDRESS
    WHERE
    action = 'redelegate'
    GROUP BY 1
    ORDER BY 2 desc
    LIMIT 10
    Run a query to Download Data