dammyzuks2023-07-28 10:39 PM copy
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
›
⌄
⌄
-- forked from 2023-07-28 10:39 PM @ https://flipsidecrypto.xyz/edit/queries/009b1dd6-17fd-4879-bd2a-8dcc451595b9
SELECT
block_timestamp,
block_timestamp :: date,
currency_symbol,
SUM(platform_fee) AS total_platform_fee,
SUM(platform_fee_usd) AS total_platform_fees_usd
FROM
ethereum.nft.ez_nft_sales
WHERE
block_timestamp :: DATE BETWEEN '2023-06-01'
AND '2023-09-11'
AND platform_name = 'opensea'
GROUP BY
1,
2,
3
ORDER BY
1,
2 DESC;
SELECT
currency_symbol,
SUM(platform_fee) AS total_platform_fee,
SUM(platform_fee_usd) AS total_platform_fees_usd
FROM
ethereum.core.ez_nft_sales
WHERE
block_timestamp :: DATE BETWEEN '2022-06-01'
AND '2022-06-30'
AND platform_name = 'opensea'
Run a query to Download Data