elvisUntitled Query
    Updated 2022-10-19
    /*SELECT label_type, label_subtype, count(distinct address) as contract_count
    FROM osmosis.core.dim_labels
    GROUP BY 1,2
    */
    SELECT *
    FROM osmosis.core.dim_labels
    WHERE label_type = 'operator'
    AND label_subtype = 'validator'
    LIMIT 20

    Run a query to Download Data