theericstoneChain overview copy
Updated 2025-01-08
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
›
⌄
-- forked from andreafiandro / Chain overview @ https://flipsidecrypto.xyz/andreafiandro/q/K8zg8g-yZt5n/chain-overview
-- 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
QueryRunArchived: QueryRun has been archived