datavortexTrends
Updated 2024-09-04
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
›
⌄
SELECT
DATE_TRUNC('week', block_timestamp) AS week,
platform_name,
SUM(platform_fee_usd) AS total_platform_fees,
SUM(creator_fee) AS total_creator_fees,
SUM(tx_fee_usd) AS total_gas_fees
FROM
optimism.nft.ez_nft_sales
GROUP BY
DATE_TRUNC('week', block_timestamp),
platform_name
ORDER BY
week,
platform_name;
QueryRunArchived: QueryRun has been archived