Pine Analyticsfragile-bronze copy
Updated 2024-12-30
999
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 combined_sales AS (
SELECT
block_timestamp,
buyer_address,
platform_name,
price_usd AS usd_volume
FROM ethereum.nft.ez_nft_sales
UNION ALL
SELECT
block_timestamp,
buyer_address,
platform_name,
price_usd AS usd_volume
FROM base.nft.ez_nft_sales
UNION ALL
SELECT
block_timestamp,
buyer_address,
platform_name,
price_usd AS usd_volume
FROM avalanche.nft.ez_nft_sales
UNION ALL
SELECT
block_timestamp,
buyer_address,
platform_name,
price_usd AS usd_volume
FROM arbitrum.nft.ez_nft_sales
UNION ALL
QueryRunArchived: QueryRun has been archived