elsinaPoly NFT - total
Updated 2022-06-23
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
›
⌄
select 'Pooly - NFT' as "NFT type",
COUNT(DISTINCT NFT_TO_ADDRESS) as "number of unique minter",
sum(MINT_PRICE_USD) as "amount paid as USD",
sum(NFT_COUNT) as "Minted Count"
from ethereum.core.ez_nft_mints where
(
NFT_ADDRESS = lower('0x90B3832e2F2aDe2FE382a911805B6933C056D6ed')
or NFT_ADDRESS = lower('0x3545192b340F50d77403DC0A64cf2b32F03d00A9')
or NFT_ADDRESS = lower('0x5663e3E096f1743e77B8F71b5DE0CF9Dfd058523')
)
and block_timestamp > '2022-05-20'
Run a query to Download Data