select date_trunc('day', block_timestamp) as dt, count(distinct tx_id) as LP_tx_count, count(distinct from_address) as LPers_count
from ethereum.transactions
where to_label = 'sushiswap' and function_name in ('addLiquidityETH','addLiquidity') and block_timestamp >= CURRENT_DATE - 89 and success = 'TRUE'
group by 1
order by 1 desc