andurilMDAO Quiz 2
    Updated 2022-08-08
    --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