PLATFORM | TOTAL_TXS | TOT_ASSET | |
---|---|---|---|
1 | symbiosis | 26 | 3 |
2 | wormhole | 68198 | 442 |
3 | near: rainbow bridge | 3742 | 75 |
4 | axelar | 15870 | 16 |
5 | meson | 397 | 2 |
6 | dln_debridge | 166829 | 12 |
7 | allbridge | 1875 | 7 |
brian-terra[1] Bridge platform overview copy
Updated 2024-12-14
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
›
⌄
-- forked from andreafiandro / [1] Bridge platform overview @ https://flipsidecrypto.xyz/andreafiandro/q/FODTFxX3SS2a/1-bridge-platform-overview
SELECT
platform,
COUNT(DISTINCT TX_HASH) as total_txs,
COUNT(DISTINCT token_symbol) as tot_asset
--sum(amount_usd) as tot_bridged
FROM
ethereum.defi.ez_bridge_activity
WHERE
block_timestamp > '{{starting_date}}'
AND Destination_chain in (
'near',
'solana',
'sui',
'osmosis',
'aptos',
'telos',
'sei',
'injective'
)
GROUP BY
platform
Last run: 27 days ago
7
160B
2s