elsinaaverage price of RUNE and others assets on each pool
    Updated 2022-04-23
    select pool_name as name, avg(asset_amount_usd / asset_amount) as asset_price, avg(rune_amount_usd / rune_amount) as rune_price
    from thorchain.pool_block_balances
    where asset_amount != 0 and rune_amount != 0
    group by 1
    Run a query to Download Data