DESTINATION_CHAIN | TOKEN_SYMBOL | TOT_BRIDGED | TOT_USD | |
---|---|---|---|---|
1 | sui | USDT | 201510287.641421 | 201471489.26 |
2 | sui | USDC | 201309192.597309 | 201309437.29 |
3 | solana | USDC | 158580709.088506 | 158595941.6 |
4 | osmosis | USDC | 82659611.287301 | 82665226.9 |
5 | near | USDC | 15199147.628423 | 15196221.54 |
6 | aptos | USDC | 6954180.817254 | 6952574.02 |
7 | solana | USDT | 5958229.905757 | 5956265.9 |
8 | fantom | USDC | 3956197.750546 | 3956006.6 |
9 | aptos | USDT | 1454853.941801 | 1454860.11 |
10 | osmosis | USDT | 1210409.761359 | 1210770.32 |
11 | near | USDT | 1005612.770197 | 1005751.77 |
12 | injective | USDC | 154084.315032 | 154051.33 |
13 | fantom | USDT | 55311.723655 | 55307.24 |
14 | telos | USDC | 31529.804481 | 31498.74 |
15 | injective | USDT | 10934.541562 | 10930.63 |
16 | sei | USDC | 4886.764065 | 4891.65 |
Keyrock[1] Bridges by destination
Updated 2024-02-09
99
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
›
⌄
-- Stablecoin inflow for each destination chain (USDT and USDC) -> Solana seems to be understated
select
destination_chain,
token_symbol,
SUM(amount) as tot_bridged,
sum(amount_usd) as tot_usd
from
ethereum.defi.ez_bridge_activity
WHERE
TOKEN_SYMBOL != '' -- To avoid weird tokens
AND len(TOKEN_SYMBOL) < 15 -- To avoid weird tokens
AND amount_usd > 0
AND block_timestamp > '{{starting_date}}'
AND Destination_chain in (
'near',
'solana',
'sui',
'osmosis',
'aptos',
'fantom',
'telos',
'sei',
'injective'
)
AND TOKEN_SYMBOL in ('USDC', 'USDT')
GROUP BY
destination_chain,
token_symbol
ORDER BY
tot_usd DESC
Last run: over 1 year ago
16
689B
2s