DESTINATION_CHAIN | TOTAL_TXS | TOT_BRIDGE_PLATFORM | TOT_ASSET | |
---|---|---|---|---|
1 | near | 4284 | 3 | 88 |
2 | injective | 253 | 2 | 10 |
3 | aptos | 1377 | 3 | 15 |
4 | telos | 27 | 1 | 3 |
5 | solana | 480185 | 5 | 511 |
6 | sui | 11369 | 3 | 25 |
7 | sei | 37 | 2 | 4 |
8 | osmosis | 17197 | 1 | 16 |
KeyrockChain overview
Updated 2024-03-28
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
›
⌄
-- Aggregated stats for different destination chain
SELECT
destination_chain,
COUNT(DISTINCT TX_HASH) as total_txs,
COUNT(DISTINCT platform) as tot_bridge_platform,
COUNT(DISTINCT token_symbol) as tot_asset
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
destination_chain
Last run: 21 days ago
8
161B
2s