Eman-RazTotal Transactions Count of each Action
    Updated 2023-03-14
    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

    Run a query to Download Data