binhachonLooking For Swap Arbitrage - #2 method
    Updated 2022-03-31
    with temp as (
    select
    sender,
    count(distinct tx_group_id) as number_of_transactions
    from algorand.asset_transfer_transaction
    where block_timestamp > '2022-01-01'
    and asset_transferred in (31566704, 312769)
    group by sender
    )
    select
    *
    from temp
    order by number_of_transactions desc
    limit 10
    Run a query to Download Data