PapasotPlanets rewards
Updated 2023-01-03
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
›
⌄
SELECT
SUM(asset_amount)/1000000 as Total_Planets,
COUNT(DISTINCT(asset_receiver)) as Wallets,
asset_id
FROM
algorand.asset_transfer_transaction
WHERE
(
asset_id = '27165954'
)
AND
sender = 'ZW3ISEHZUHPO7OZGMKLKIIMKVICOUDRCERI454I3DB2BH52HGLSO67W754'
AND
asset_amount is not null
GROUP BY asset_id
Run a query to Download Data