BlockTrackercosmos - stride
Updated 2023-11-01
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
'cosmos --> stride' as type,
currency,
count(DISTINCT tx_id) as n_action,
count(DISTINCT sender) as n_user,
sum(amount/1e6) as amount
FROM cosmos.core.fact_transfers
WHERE receiver ilike 'stride%'
GROUP BY 2
ORDER BY n_action DESC
SELECT
'stride --> cosmos' as type,
currency,
count(DISTINCT tx_id) as n_action,
count(DISTINCT receiver) as n_user,
sum(amount/1e6) as amount
FROM cosmos.core.fact_transfers
WHERE sender ilike 'stride%'
GROUP BY 2
ORDER BY n_action DESC
Run a query to Download Data