All bridges by Bridge
    Updated 49 minutes ago
    with hyperlane_bridges as (
    select
    'Hyperlane' as bridge
    , date
    , volume_usd_in
    , volume_usd_out
    , tvl_usd
    , events_count
    from $query('19f93923-bf61-4c76-a496-194ee7e6d11f')
    )

    , canonical_bridges as (
    select
    'Canonical' as bridge
    , date
    , volume_usd_in
    , volume_usd_out
    , tvl_usd
    , events_count
    from $query('3b847d0f-cb54-439d-90d7-a6c81442058c')
    group by all
    )

    , aggregated as (
    select
    date
    , zeroifnull(a.volume_usd_in) + zeroifnull(b.volume_usd_in) as volume_in
    , zeroifnull(a.volume_usd_out) + zeroifnull(b.volume_usd_out) as volume_out
    , sum(volume_in) over (order by date) as total_volume_in
    , sum(volume_out) over (order by date) as total_volume_out
    , total_volume_in - total_volume_out as total_gross_volume
    , a.tvl_usd + b.tvl_usd as total_bridge_tvl
    , zeroifnull(a.events_count) + zeroifnull(b.events_count) as counter
    , sum(counter) over (order by date) as total_bridges
    , total_gross_volume / total_bridges as avg_usd_bridge_size

    Last run: about 1 hour agoAuto-refreshes every 3 hours
    DATE
    VOLUME_IN
    VOLUME_OUT
    TOTAL_VOLUME_IN
    TOTAL_VOLUME_OUT
    TOTAL_GROSS_VOLUME
    TOTAL_BRIDGE_TVL
    COUNTER
    TOTAL_BRIDGES
    AVG_USD_BRIDGE_SIZE
    1
    2025-04-02 00:00:00.0001133434.30734998-1251271.98527095504622201.535612-269661725.139566774283926.675178151410402.8017946798165970.080029411
    2
    2025-04-01 00:00:00.0002016990.95114067-945793.565804412503488767.228262-268410453.154295771899220.382557152843045.7982892261797219968.239869324
    3
    2025-03-31 00:00:00.0001164816.26843212-1111563.28344317501471776.277121-267464659.588491768936435.865612146813433.7623982581794958967.266743483
    4
    2025-03-30 00:00:00.0001475979.20113616-1137568.2861013500306960.008689-266353096.305047766660056.313736146444005.092022556792377967.544560624
    5
    2025-03-29 00:00:00.0001809717.7580836-1340226.40021992498830980.807553-265215528.018946764046508.826499147617619.5125442604789821967.366667671
    6
    2025-03-28 00:00:00.0001955311.41118952-1082426.66606318497021263.049469-263875301.618726760896564.668195151377653.3168292948787217966.565209679
    7
    2025-03-27 00:00:00.0001842986.13541915-1514206.34115497495065951.63828-262792874.952663757858826.590943158715457.8040492842784269966.325108593
    8
    2025-03-26 00:00:00.0001803353.54601583-1051908.49651944493222965.502861-261278668.611508754501634.114369158666012.0710933051781427965.543338168
    9
    2025-03-25 00:00:00.0001097889.83425061-984952.896100101491419611.956845-260226760.114989751646372.071833160958087.8765021868778376965.65974808
    10
    2025-03-24 00:00:00.0001671646.98812971-1608625.9065224490321722.122594-259241807.218888749563529.341483161410930.8198411929776508965.300459675
    11
    2025-03-23 00:00:00.0001559296.13905024-1503195.68576245488650075.134464-257633181.312366746283256.44683155730685.5963471827774579963.469518857
    12
    2025-03-22 00:00:00.0001823224.89720078-1237091.2829925487090778.995414-256129985.626604743220764.622018154872287.9590291821772752961.784330059
    13
    2025-03-21 00:00:00.0001622723.37187547-1260289.28302187485267554.098213-254892894.343611740160448.441824153509471.2421482955770931960.086503775
    14
    2025-03-20 00:00:00.0002005897.92424436-1882444.69643383483644830.726338-253632605.060589737277435.786927153813906.9506952526767976960.026662014
    15
    2025-03-19 00:00:00.0002321247.04227156-1827893.47356936481638932.802094-251750160.364155733389093.166249155732944.8999262210765450958.114956125
    16
    2025-03-18 00:00:00.0001757615.7499015-1212763.77436657479317685.759822-249922266.890586729239952.650408147763285.4419482090763240955.45300646
    17
    2025-03-17 00:00:00.0001138888.63452651-883722.29732197477560070.00992-248709503.11622726269573.12614148997560.6546262125761150954.17404339
    18
    2025-03-16 00:00:00.0001200590.76491578-1073288.80450986476421181.375394-247825780.818898724246962.194292146606484.7792262155759025954.180642527
    19
    2025-03-15 00:00:00.0002017334.24028508-1297348.85396797475220590.610478-246752492.014388721973082.624866149636891.3376161703756870953.893115892
    20
    2025-03-14 00:00:00.0001891571.62792296-1608201.94720624473203256.370193-245455143.16042718658399.530613147288178.9152712151755167951.654931334
    ...
    221
    33KB
    181s