shadilRand Gallery NFT Sales - fees
    Updated 2022-05-03
    SELECT
    date(block_timestamp) as date,
    sum(amount) as fees,
    sum(fees) over (order by date asc) as accumulated_fees
    from algorand.payment_transaction
    -- tx_group_id = 'm5Xmjvw60T+/9+xo15Oi5GjffoRHNRtBkSYDDZBeLgc=' -- sample NFT Sale
    where lower(receiver) = lower('RANDGVRRYGVKI3WSDG6OGTZQ7MHDLIN5RYKJBABL46K5RQVHUFV3NY5DUE')
    GROUP by date
    Run a query to Download Data