saeedmznUser Behavior - top swap tokens
    Updated 2022-06-17
    select
    contract_name as Token,
    count (distinct tx_id) as TX_Count,
    count (distinct trader) as User
    from flow.core.fact_swaps
    join flow.core.dim_contract_labels
    on token_out_contract = event_contract
    group by 1

    Run a query to Download Data