PapasotDaily STBL staking transfers
    Updated 2023-01-03
    --DYLJJES76YQCOUK6D4RALIPJ76U5QT7L6A2KP6QTOH63OBLFKLTER2J6IA - STBL staking address

    select
    date_trunc('day',block_timestamp) as block_day,
    count(tx_id) as stake_actions,
    sum(asset_amount)/1000000 as staked_STBL
    from algorand.asset_transfer_transaction
    where asset_receiver = 'DYLJJES76YQCOUK6D4RALIPJ76U5QT7L6A2KP6QTOH63OBLFKLTER2J6IA' and
    asset_transferred = '465865291' AND
    block_timestamp >= '2022-05-08'
    group by block_day
    order by block_day
    Run a query to Download Data