KeyrockSEI - Bridge Inflwo
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
23
24
25
26
›
⌄
select
date_trunc('day', block_timestamp) as day,
destination_chain,
COUNT(DISTINCT TX_HASH) as total_txs
from
ethereum.defi.ez_bridge_activity
WHERE
TOKEN_SYMBOL != ''
AND amount_usd > 0
AND block_timestamp > '{{starting_date}}'
AND Destination_chain in (
'near',
'solana',
'sui',
'osmosis',
'aptos',
'manta',
'telos',
'sei',
'injective'
)
GROUP BY
destination_chain,
day
ORDER BY
total_txs DESC
QueryRunArchived: QueryRun has been archived