Sardius-06262024-03-17 08:29 PM
9
1
2
3
4
5
6
7
›
⌄
SELECT Distinct platform_name,
ROUND(SUM(total_fees_usd)) AS total_fees_usd,
DATE_TRUNC('month', block_timestamp) AS month,
FROM arbitrum.nft.ez_nft_sales
WHERE block_timestamp::DATE >= '2023-01-01'
AND block_timestamp::DATE < '2024-03-01'
GROUP BY platform_name, month
Run a query to Download Data