cheeyoung-kekTrending NFT project after 9th May
Updated 2022-06-09Copy Reference Fork
999
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
›
⌄
SELECT
--date_trunc('day', block_timestamp) as date,
NFT_ADDRESS,
project_name,
count (distinct TX_HASH) as count_this
from ethereum.core.ez_nft_sales
where event_type='sales'
group by NFT_ADDRESS,project_name
order by count_this desc
limit 10
SELECT
--date_trunc('day',block_timestamp) as date,
PROJECT_NAME,
currency_symbol,
count (DISTINCT TOKENID) as count_token
from ethereum.core.ez_nft_sales
where event_type = 'sale'
group by PROJECT_NAME,currency_symbol
order by count_token desc
limit 10
select DISTINCT PROJECT_NAME,platform_name from ethereum.core.ez_nft_sales
Run a query to Download Data