boomer77lp before after thor
Updated 2021-12-01
9
1
2
3
4
5
6
7
›
⌄
select day, pool_name, add_liquidity_count, add_asset_liquidity_usd, add_rune_liquidity_usd,
concat('-', withdraw_asset_liquidity_usd) as withdraw_asset_liquidity_usd, concat('-', withdraw_rune_liquidity_usd) as withdraw_rune_liquidity_usd,
(add_asset_liquidity_usd + add_rune_liquidity_usd) as total_add_liquidity, (withdraw_asset_liquidity_usd + withdraw_rune_liquidity_usd) as total_remove_liquidity,
total_add_liquidity - total_remove_liquidity as net_change
from thorchain.daily_pool_stats
where day between '2021-11-06' and '2021-11-24'
order by day desc
Run a query to Download Data