iboo-jbj2MVPlot the staking amounts(the amount of $COGS staked) by day over time on a scatter plot. What types of trends do you see?
    Updated 2022-04-28
    with staking_ids as ( select
    tx_group_id
    from algorand.application_call_transaction
    where TRY_BASE64_DECODE_STRING(tx_message :txn :apaa [0] :: STRING) = 'S'
    and app_id =710543830
    group by 1
    )
    select block_timestamp::date as date ,
    sum (asset_amount/1e6) as staked_amount
    from algorand.asset_transfer_transaction
    where tx_group_id in (select * from staking_ids)
    group by 1
    Run a query to Download Data