yasminTop Destinations by transactions
Updated 2024-11-25
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
31
›
⌄
-- forked from Top Sources by transactions @ https://flipsidecrypto.xyz/edit/queries/c59bbd8f-abf3-41d5-9fe4-67891a37ab7f
SELECT
"sourceChain",
"TXs Count"
FROM (
SELECT
CAST(CALL:returnValues:destinationChain AS VARCHAR) AS "sourceChain",
COUNT(DISTINCT call:transactionHash) AS "TXs Count"
FROM
axelar.axelscan.fact_gmp
GROUP BY
CALL:returnValues:destinationChain
UNION ALL
SELECT
CAST(DESTINATION_CHAIN AS VARCHAR) AS "DESTINATION CHAIN",
COUNT(DISTINCT SEND:txhash) AS "TXs Count"
FROM
axelar.axelscan.fact_transfers
GROUP BY
DESTINATION_CHAIN
) AS combined
ORDER BY
"TXs Count" DESC
LIMIT
5;
QueryRunArchived: QueryRun has been archived