RayyykTop 5 Blockchains that contributed the most bridge volume by transaction count
    Updated 2022-07-04
    select blockchain,
    count(distinct(tx_id)) as tx_count
    from flow.core.fact_bridge_transactions
    group by 1
    order by 2 desc
    limit 5
    Run a query to Download Data