SocioAnalytica Interchain transfers activities
Updated 2024-10-20
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 'GMP' as type,
date_trunc('{{interval}}',block_timestamp) as date,
count(DISTINCT tx_id) as n_txs
FROM (
SELECT tx_id ,
block_timestamp
FROM axelar.core.fact_msg_attributes
WHERE ATTRIBUTE_VALUE = 'Event_ContractCallWithToken'
UNION
SELECT tx_id ,
block_timestamp
FROM axelar.core.fact_msg_attributes
WHERE ATTRIBUTE_VALUE = 'Event_ContractCall'
)
GROUP BY date
UNION
SELECT
'TRANSFERS' as type,
date_trunc('{{interval}}',block_timestamp) as date,
count(DISTINCT tx_hash) as n_txs
FROM axelar.defi.ez_bridge_satellite
GROUP BY date
ORDER BY 1 DESC
QueryRunArchived: QueryRun has been archived