select action as "Action", count(distinct tx_id) as "Total Transactions Count"
from terra.core.fact_lp_actions
where block_timestamp::date>='2023-01-01' and tx_succeeded='TRUE' and (action='provide_liquidity' or action='withdraw_liquidity')
group by 1