Afonso_Diaz2023-04-27 02:49 PM
Updated 2023-04-27
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
32
33
›
⌄
with
t as (
select t.chain
from ((values
('assetmantle'),
('juno'),
('kujira'),
('comdex'),
('umee'),
('axelarnet'),
('stargaze'),
('agoric'),
('terra2'),
('osmosis'),
('crescent'),
('evmos'),
('secret')
) as t(chain)
))
select
source_chain as chain,
count(distinct tx_hash) transactions,
count(distinct sender) active_users,
sum(amount) as volume_usd,
avg(amount) as average_volume_usd,
median(amount) as median_volume_usd,
max(amount) as max_volume_usd,
min(amount) as min_volume_usd
from axelar.core.ez_squid
where destination_chain in (select chain from t)
and block_timestamp >= '2023-02-23'
group by 1
Run a query to Download Data