kiichiUntitled Query
9
1
2
3
4
5
6
7
8
›
⌄
SELECT
trunc(block_timestamp,'month') as months,
sum(from_amount_usd) As volume_in_USD
from flipside_prod_db.thorchain.swaps
where to_asset='THOR.RUNE'
and year(block_timestamp)='2022'
group by months
ORDER BY volume_IN_USD DESC
Run a query to Download Data