legomanExplore label types
    Updated 2022-11-18
    -- -- only have flipside labels
    -- select creator, count(*)
    -- from crosschain.core.address_labels
    -- group by 1
    -- order by 2 desc

    select project_name , label_type, count(*)
    from crosschain.core.address_labels
    where creator = 'flipside'
    group by 1,2
    having count(*) > 50
    order by 3 desc

    -- select *
    -- from crosschain.core.address_labels
    -- where project_name = 'gastoken.io'
    -- limit 100

    -- select label_type, count(*)
    -- from crosschain.core.address_labels
    -- group by 1 order by 2

    -- select project_name, count(distinct address)
    -- from crosschain.core.address_labels
    -- where label_type = 'cex'
    -- group by 1 order by 2 desc

    -- select blockchain, count(*)
    -- from crosschain.core.address_labels
    -- where label_type = 'cex'
    -- group by 1 order by 2 desc


    -- -- Ethereum cex labels
    -- select project_name, address
    -- from crosschain.core.address_labels
    Run a query to Download Data