andurilUntitled Query


    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