itsxenuxgoBTC mint amount
    Updated 2022-04-05
    select 'mint' as label, sum(asset_amount)/pow(10,8) as mint_total, block_timestamp::date as date_time, 'goBTC' as asset_name
    from algorand.asset_transfer_transaction att
    where att.asset_transferred = '386192725'
    and att.sender = 'ETGSQKACKC56JWGMDAEP5S2JVQWRKTQUVKCZTMPNUGZLDVCWPY63LSI3H4'
    and att.asset_amount IS NOT NULL
    and att.asset_amount > 0
    group by date_time

    Run a query to Download Data