/*
Algorand - 1. Most Popular ASAs
- What are the most popular ASAs on Algorand?
- How many wallets are holding each ASA?
- How many transactions happen with these ASAs?
- How have these stats changed over time?
*/
SELECT
sender,
count(tx_id) AS txs
FROM
algorand.transactions
WHERE
asset_id = '27165954'
GROUP BY sender
ORDER BY txs DESC
LIMIT 10;