PapasotRewards per block
    Updated 2023-01-03
    SELECT
    SUM(asset_amount)/1000000 as Planets,
    block_id
    FROM
    algorand.asset_transfer_transaction
    WHERE
    (
    asset_id = '27165954'
    )
    AND
    sender = 'ZW3ISEHZUHPO7OZGMKLKIIMKVICOUDRCERI454I3DB2BH52HGLSO67W754'
    AND
    asset_amount is not null

    GROUP BY block_id
    ORDER BY block_id ASC
    Run a query to Download Data