DESTINATION_CHAIN | TRANSACTION_COUNT | TOTAL_AMOUNT_BRIDGED | |
---|---|---|---|
1 | polygon | 1977375 | 8.18500052066716e+27 |
2 | bsc | 1276153 | 2.0005513980751e+26 |
3 | arbitrum | 1194856 | 6.5923693481428e+24 |
4 | optimism | 457961 | 2.79486214859305e+24 |
5 | fantom | 419308 | 1.69324302455623e+21 |
6 | base | 139910 | 6.30438112091606e+24 |
7 | metis | 135131 | 78645227.8173187 |
8 | dfk | 115331 | 29932516.937891 |
9 | solana | 70112 | 2.66514499266417e+24 |
10 | ethereum | 55600 | 5.36367438078764e+22 |
crypto_gostbridged to
Updated 2024-12-27
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
›
⌄
SELECT
destination_chain,
COUNT(*) AS transaction_count,
SUM(amount) AS total_amount_bridged
FROM
AVALANCHE.defi.ez_bridge_activity
WHERE
amount IS NOT NULL
GROUP BY
destination_chain
ORDER BY
transaction_count DESC, total_amount_bridged DESC;
limit 10;
Last run: 2 months ago
10
379B
7s