metricsdaolearner question
Updated 2022-11-29Copy Reference Fork
99
1
2
3
4
5
6
7
8
9
10
11
12
›
⌄
SELECT
currency_symbol as "currency symbol",
COUNT (distinct tx_hash) as "Number of Transactions",
sum(platform_fee) as "Total platform fees, transaction token",
sum(platform_fee_usd) as "Total platform fees, USD"
FROM ethereum.core.ez_nft_sales
WHERE
block_timestamp::DATE BETWEEN '2022-10-01' AND '2022-10-31'
AND platform_name = 'opensea'
AND currency_symbol = 'ETH'
GROUP BY "currency symbol"
ORDER BY "Total platform fees, USD" DESC
Run a query to Download Data