Cross-Chain Service | Total Users | |
---|---|---|
1 | Chainlink CCIP | 83890 |
2 | Wormhole | 492912 |
3 | Axelar | 612580 |
4 | LayerZero | 8515964 |
Flipside Axelar AnalystsSAM (Serviceable Available Market): # of total users across all connected chains;
Updated 2025-02-18
999
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
36
›
⌄
with sam as (
-------------------------------------------------------------------------------------------------------
---------------------------------------------------WORMHOLE--------------------------------------------
-------------------------------------------------------------------------------------------------------
with wormhole as (select case
when source_chain in ('bsc','bnb','binance smart chain') then 'Bsc'
when source_chain in ('avalanche','avalanche c-chain') then 'Avalanche'
when source_chain='ethereum' then 'Ethereum'
when source_chain='arbitrum' then 'Arbitrum'
when source_chain='polygon' then 'Polygon'
when source_chain='optimism' then 'Optimism'
when source_chain='base' then 'Base'
end as "Source Chain",
sum(amount_usd) as "Volume of Transfers",
count(distinct tx_hash) as "Number of Transfers",
count(distinct source_address) as "Number of Users",
count(distinct destination_chain) as "Number of Routes",
'Wormhole' as "Cross-Chain Service"
from crosschain.defi.ez_bridge_activity
where platform in ('wormhole')
and block_timestamp::date>='2024-01-01'
and source_chain in ('arbitrum','avalanche','base','bsc','bnb','binance smart chain','ethereum','optimism','polygon','avalanche c-chain')
group by 1, 6),
-------------------------------------------------------------------------------------------------------
---------------------------------------------------LAYERZERO--------------------------------------------
-------------------------------------------------------------------------------------------------------
layer0 as (
with dune_data AS (
SELECT livequery.live.udf_api(
'https://api.dune.com/api/v1/query/4599633/results?api_key=kmCBMTxWKBxn6CVgCXhwDvcFL1fBp6rO'
) AS response),
flatten_dune_data AS (SELECT
value:"result":"rows" as data
Last run: 2 months ago
4
86B
100s