DB_Volume over time
Updated 2022-12-13
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
cte_opensea AS (
SELECT
date_trunc('day', block_timestamp) as sale_date,
SUM(price) as opensea_volume,
SUM(price_usd) as opensea_volume_usd
FROM
ethereum.core.ez_nft_sales
WHERE
block_timestamp >= '2022-10-19'
AND platform_name = 'opensea'
AND currency_symbol = 'ETH'
GROUP BY
1
),
cte_blur AS (
SELECT
date_trunc('day', block_timestamp) as sale_date,
SUM(price) as blur_volume,
SUM(price_usd) as blur_volume_usd
FROM
ethereum.core.ez_nft_sales
WHERE
block_timestamp >= '2022-10-19'
AND platform_name = 'blur'
AND currency_symbol = 'ETH'
GROUP BY
1
),
cte_x2y2 AS (
SELECT
date_trunc('day', block_timestamp) as sale_date,
SUM(price) as x2y2_volume,
SUM(price_usd) as x2y2_volume_usd
FROM
ethereum.core.ez_nft_sales
Run a query to Download Data