mondovpairs
    Updated 2023-04-20
    select
    concat(symbol_in, '-', symbol_out) as pair,
    blockchain,
    count(tx_hash) as transactions
    from crosschain.defi.ez_swaps
    WHERE pair is not null
    group by pair, blockchain
    order by transactions desc
    limit 20
    Run a query to Download Data