granadohoDaily Total Staking LP Transactions
    Updated 2022-02-12
    select
    date(block_timestamp) as date,
    count(tx_id) as total_tranfer
    from solana.staking_lp_actions
    where succeeded = 'TRUE' and date >= '2022-01-01' and date <= '2022-02-28'
    group by 1
    order by 1 asc
    Run a query to Download Data