boomer77Top 5 native swaps
    Updated 2021-09-05
    select token_1_currency, sum(token_1_amount_usd) as Volume_USD, avg(token_1_amount_usd) as Average_Size_USD
    from terra.swaps
    where token_1_currency is not null and tx_status = 'SUCCEEDED'
    group by 1
    order by 2 DESC
    limit 5
    Run a query to Download Data