adambalaHolders
Updated 2022-11-02
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
⌄
/*Art Gobblers is a pre-reveal NFT project that generates "goo" when you feed it (upload) art you've created. Some say the project is revitalizing NFTs in the bear market - Compare various metrics across NFT activity to support or oppose that idea. Then evaluate how the project's metrics stack up to other top NFT collections before their art reveals.
Art Gobblers is a pre-reveal NFT project that generates "goo" when you feed it (upload) art you've created. Some say the project is revitalizing NFTs in the bear market - Compare various metrics across NFT activity to support or oppose that idea. Then evaluate how the project's metrics stack up to other top NFT collections before their art reveals.*/
with
a as (
select
nft_to_address as wallets,
'1' as title
FROM ethereum.core.ez_nft_transfers
where (nft_address =lower('0x60bb1e2aa1c9acafb4d34f71585d7e959f387769')
)
union all
SELECT
nft_from_address as wallets,
'-1' as title
FROM ethereum.core.ez_nft_transfers
where (nft_address =lower('0x60bb1e2aa1c9acafb4d34f71585d7e959f387769')
)
),
b as (
select
wallets ,
sum(title) as nfts
from a
Run a query to Download Data