alirslofty-06
Updated 2022-07-14
9
1
2
3
4
5
6
7
8
9
›
⌄
with tab1 as (select payment_transaction.fee, payment_transaction.asset_id
from algorand.payment_transaction
),
tab2 as(select asset.total_supply, asset.asset_id
from algorand.asset
)
select count(DISTINCT creator_address) as WalletCount
from algorand.asset
Run a query to Download Data