adriaparcerisas2023-07-17 11:16 AM
    SELECT
    distinct receiver, project_name, min(block_timestamp) as debut, count(distinct tx_id) as counts
    from osmosis.core.fact_transfers x
    join osmosis.core.dim_labels y
    on receiver = address
    group by 1,2 having debut>'2023-01-01'
    order by 3 desc


    Run a query to Download Data