adambalamint crypto 11
Updated 2022-12-09
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
›
⌄
with eth as
(select
PRICE as volume ,
NFT_ADDRESS ,
SELLER_ADDRESS as sellers ,
BUYER_ADDRESS as buyers ,
TX_HASH as sale_tx ,
BLOCK_TIMESTAMP ::date as date ,
TOKENID ,
PRICE_USD ,
TOTAL_FEES,
PLATFORM_FEE ,
CREATOR_FEE ,
TOTAL_FEES_USD ,
PLATFORM_FEE_USD ,
CREATOR_FEE_USD,
TX_FEE,
TX_FEE_USD
from
ethereum.core.ez_nft_sales where CURRENCY_ADDRESS='ETH' and EVENT_TYPE='sale' and
NFT_ADDRESS=('0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d')
)
, ethh as (select
date ,
count (distinct TOKENID) as "Number of TOKENID",
count (distinct sellers) as "seller",
count (distinct buyers) as "buyer",
count (distinct sale_tx) as "sale_txs",
sum(volume) as "volumes" ,
sum(PRICE_USD) as PRICE_USDs ,
sum(TOTAL_FEES) as TOTAL_FEESs ,
sum(PLATFORM_FEE) as PLATFORM_FEEs ,
sum(CREATOR_FEE) as CREATOR_FEEs ,
sum(TOTAL_FEES_USD) as TOTAL_FEES_USDs ,
sum(PLATFORM_FEE_USD) as PLATFORM_FEE_USDs ,
Run a query to Download Data