andurilUntitled Query
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
›
⌄
select *
from ethereum.core.fact_transactions
where
date(block_timestamp) between '2022-06-01' and '2022-06-30'
limit 20
select * from ethereum.core.ez_nft_sales where event_type = '' limit 20
date_truc(date,block_timestamp)
select *
from
ethereum.core.ez_nft_sales
where
date(block_timestamp) between '2022-06-01' and '2022-06-30' and
event_type is not null
and platform_name = 'opensea'
limit 20
Run a query to Download Data