nitsUSDT transactions
Updated 2022-02-11
9
1
2
3
4
›
⌄
SELECT date(block_timestamp) as day, count(DISTINCT tx_id ) as total_txs, sum(asset_amount)/pow(10,6) as total_vol, sum(total_vol) over (order by day) as cumulative_vol,sum(total_txs) over (order by day) as cumulative_txs from algorand.asset_transfer_transaction
where asset_id = '312769'
GROUP by 1
ORDER by 1
Run a query to Download Data