DESTINATION | NO_TRANS | BRIDGE_OUT | |
---|---|---|---|
1 | bsc | 113 | 140173.79918963 |
2 | polygon | 75 | 22385.45895332 |
3 | CoreDAO | 4 | 975.98754526 |
4 | Avalanche | 1193 | 11279683.0733072 |
5 | algorand | 3 | 64.28624 |
6 | fantom | 20 | 8698.854537902 |
7 | optimism | 174 | 122066.541416918 |
8 | BSC | 3260 | 71236384.6335448 |
9 | base | 168 | 27536.713404932 |
10 | terra2 | 1 | 0.00987 |
11 | Bevm | 4 | |
12 | ZkSync | 5 | 80.6081404 |
13 | ethereum | 80 | 2254490.15509995 |
14 | sui | 1232 | 1333696.30274172 |
15 | solana | 1060 | 2198109.52682894 |
16 | Polygon | 2273 | 7565808.48362939 |
17 | sei | 11 | 8167.432657033 |
18 | moonbeam | 116 | 7461305.02364806 |
19 | celo | 7 | 11552.394142742 |
20 | avalanche | 21 | 15934.354816446 |
realistoutbound bridging
Updated 2024-11-21
99
1
2
3
4
5
6
7
8
9
10
11
12
›
⌄
SELECT
--date_trunc('day', block_timestamp) as date,
destination_chain as destination,
count(tx_hash) as no_trans,
sum(case when direction = 'outbound' then amount_in_usd
end) as bridge_out
FROM aptos.defi.ez_bridge_activity
where block_timestamp >= '{{start_date}}'
and destination_chain != 'Aptos'
and destination_chain != 'aptos'
GROUP BY 1
Last run: about 2 months ago
29
848B
1s