oooooblahotherside site compare
Updated 2022-07-31
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
opensea10 as (
select tokenid, block_timestamp, event_type, platform_name, currency_symbol, price from ethereum_core.ez_nft_sales
where block_timestamp >= CURRENT_DATE - 1
AND nft_address = lower('0x34d85c9CDeB23FA97cb08333b511ac86E1C4E258')
and platform_name = 'opensea'
and price > .75
order by price
limit 10
),
looksrare10 as (
select tokenid, block_timestamp, event_type, platform_name, currency_symbol, price from ethereum_core.ez_nft_sales
where block_timestamp >= CURRENT_DATE - 1
AND nft_address = lower('0x34d85c9CDeB23FA97cb08333b511ac86E1C4E258')
and platform_name = 'looksrare'
and price > .75
order by price
limit 10
),
x2y210 as (
select tokenid, block_timestamp, event_type, platform_name, currency_symbol, price from ethereum_core.ez_nft_sales
where block_timestamp >= CURRENT_DATE - 1
AND nft_address = lower('0x34d85c9CDeB23FA97cb08333b511ac86E1C4E258')
and platform_name = 'x2y2'
and price > .75
order by price
limit 10
),
Run a query to Download Data