mucryptoS3 Q11
Updated 2023-01-30
99
1
2
3
4
5
6
7
8
9
10
11
›
⌄
with minted as (select
distinct nft_to_address,
count(nft_count) as nfts_minted
from ethereum.core.ez_nft_mints
where date_trunc('month',block_timestamp) = '2022-10-01'
group by nft_to_address
order by nfts_minted desc
limit 10)
select sum(nfts_minted)
from minted
Run a query to Download Data