saber-jltotal bridge origin to flow network
    Updated 2022-11-20
    select
    BLOCKCHAIN,
    count (distinct tx_id) as tx_Count,
    count (distinct flow_wallet_address) as users,
    sum (amount) as Total_Volume
    from flow.core.ez_bridge_transactions
    where direction = 'inbound'
    group by 1
    Run a query to Download Data