PLATFORM | TRANSACTIONS | TOTAL_USD_BRIDGED | |
---|---|---|---|
1 | blocto | 1962 | 18099470.1942409 |
2 | cbridge | 691 | 8175254.83506516 |
Specterbridge by platfrm
Updated 2025-01-27
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
›
⌄
SELECT
platform,
COUNT(DISTINCT tx_id) AS transactions,
SUM(amount_usd) AS total_usd_bridged
FROM
flow.defi.ez_bridge_activity
WHERE
(source_chain IN ('Ethereum', 'BSC', 'Polygon', 'Fantom', 'Avalanche', 'Moonbeam', 'Evmos')
OR destination_chain IN ('Ethereum', 'BSC', 'Polygon', 'Fantom', 'Avalanche', 'Moonbeam', 'Evmos'))
AND amount_usd IS NOT NULL
GROUP BY
platform
Last run: 3 months ago
2
67B
2s