web3explorerAgoric
Updated 2023-07-21
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
›
⌄
SELECT
destination_chain,
COUNT(DISTINCT tx_hash) AS total_txs
FROM
axelar.core.ez_squid
WHERE
block_timestamp >= '2023-02-23'
AND destination_chain IN (
'crescent',
'osmosis',
'umee',
'juno',
'kujira',
'secret',
'terra2',
'evmos',
'stargaze',
'comdex',
'carbon',
'agoric',
'assetmantle',
'comdex'
)
GROUP BY
destination_chain
ORDER BY
total_txs DESC;
Run a query to Download Data