HadisehWorld Cup 6
Updated 2022-12-06
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
›
⌄
-- this code is from Masi
with tb as ( select trunc(block_timestamp,'day') as day,
'Fifa' as project_name,
tx_group_id as tx,
nft_asset_id as nft,
purchaser as buyer,
TOTAL_SALES_AMOUNT_USD as usd_volume
from algorand.nft.ez_nft_sales_fifa
where sale_type = 'secondary'
UNION
select trunc(block_timestamp,'day') as day,
'Laliga Golazos' as project_name,
tx_id as tx,
nft_id as nft,
buyer,
price as usd_volume
from flow.core.ez_nft_sales
where nft_collection = 'A.87ca73a41bb50ad5.Golazos'
and TX_SUCCEEDED = 'TRUE'
UNION
select trunc(block_timestamp,'day') as day,
'TopShot' as project_name,
tx_id as tx,
nft_id as nft,
buyer,
price as usd_volume
from flow.core.ez_nft_sales
where nft_collection ilike '%topshot%'
and TX_SUCCEEDED = 'TRUE'
UNION
select trunc(block_timestamp,'day') as day,
'AllDay' as project_name,
tx_id as tx,
a.nft_id as nft,
buyer,
price as usd_volume
Run a query to Download Data