andurilMDAO Quiz 2
Updated 2022-08-08
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
›
⌄
--Which one of the following is the most popular block explorer for Ethereum?
/*
select platform_name,
count(distinct tx_hash ) as txs
from ethereum.core.ez_nft_sales
where date(block_timestamp) between '2022-07-01' and '2022-07-31'
group by 1
select
count(distinct tx_hash)
from ethereum.core.ez_nft_mints
where date(block_timestamp) between '2022-07-01' and '2022-07-31'
and project_name = 'ens'
--group by 1
limit 2
select
pool_name,
count(distinct tx_hash) as txs
from ethereum.core.ez_dex_swaps
where date(block_timestamp) between '2022-07-01' and '2022-07-31'
and platform = 'sushiswap'
group by 1
order by 2 desc
select
count(distinct address)
from
ethereum.core.dim_labels
Run a query to Download Data