shadilGovernance Period 2 Payouts - reward amount
    Updated 2022-04-10
    select
    min(block_timestamp) as first_date,
    max(block_timestamp) as last_date,
    TIMESTAMPDIFF('minute', first_date, last_date) as elapsed_minutes

    from algorand.payment_transaction
    where block_timestamp::date > '2022-03-30'
    and try_base64_decode_string(tx_message:txn:note::string) like '%af/gov1:j{"rewardsPrd":2%'
    and sender = '57QZ4S7YHTWPRAM3DQ2MLNSVLAQB7DTK4D7SUNRIEFMRGOU7DMYFGF55BY'

    Run a query to Download Data