MLDZMNcosmo10
    Updated 2022-10-12
    select
    distinct trader as sender,
    count(distinct tx_id) as no_transaction
    from osmosis.core.fact_swaps
    where POOL_IDS[0]=722
    and TX_STATUS='SUCCEEDED'
    and BLOCK_TIMESTAMP>=CURRENT_DATE-7
    group by 1
    order by 2 desc limit 10
    Run a query to Download Data