mmdrezaAverage NFT price on Ethereum
    Updated 2022-09-17
    with flow as (select date_trunc('day',block_timestamp)as date,price
    from flow.core.ez_nft_sales
    where
    block_timestamp >= '2022-01-01'
    group by date,price
    order by date asc),
    ethereum as (select date_trunc('day',block_timestamp)as date,price_usd
    from ethereum.core.ez_nft_sales
    where
    block_timestamp >= '2022-01-01'
    group by date,price_usd
    order by date asc),
    solana as (select date_trunc('day',block_timestamp)as date,sales_amount
    from solana.core.fact_nft_sales
    where
    block_timestamp >= '2022-01-01'
    group by date,sales_amount
    order by date asc)
    select avg(price_usd) as avg_eth
    from ethereum
    Run a query to Download Data