flyingfishAll bridges by Token copy
Updated 2025-03-16
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
›
⌄
-- forked from All bridges by Token @ https://flipsidecrypto.xyz/studio/queries/97e7a802-b4cc-477c-9d10-e2125b6a057d
with hyperlane_bridges as (
select
'Hyperlane' as bridge
, date
, symbol
, daily_volume_usd as volume_usd
from $query('9a9e0709-c8f0-40d5-91d5-559cc200e7dc')
)
, canonical_bridges as (
select
'Canonical' as bridge
, date
, 'ETH' as symbol
, daily_gross_usd_volume as volume_usd
from $query('3b847d0f-cb54-439d-90d7-a6c81442058c')
)
select *
from canonical_bridges
union all
select * from hyperlane_bridges
QueryRunArchived: QueryRun has been archived