intellidegentSession 3
    Updated 2022-11-28
    SELECT min(block_timestamp), max(block_timestamp)
    FROM ethereum.core.ez_nft_sales
    WHERE block_timestamp between '2022-10-01' AND '2022-10-31'

    SELECT min(block_timestamp), max(block_timestamp)
    FROM ethereum.core.ez_nft_sales
    WHERE block_timestamp::date between '2022-10-01' AND '2022-10-31'

    SELECT min(block_timestamp), max(block_timestamp)
    FROM ethereum.core.ez_nft_sales
    WHERE date_trunc('day',block_timestamp) between '2022-10-01' AND '2022-10-31'

    select * from arbitrum.core.fact_transactions
    where from_address = lower('0x33fcfbf3af13dcc813053b7dcb7d3546b0c8a18c')

    select * from arbitrum.core.fact_token_transfers
    where to_address = lower('0x33fcfbf3af13dcc813053b7dcb7d3546b0c8a18c')

    select * from arbitrum.core.fact_token_transfers
    where from_address = lower('0x33fcfbf3af13dcc813053b7dcb7d3546b0c8a18c')
    order by block_timestamp desc

    select * from arbitrum.core.fact_transactions
    where tx_hash = lower('0x69688cebcc31c59671356b2be23189f8c0cfb66768a29ebdabe4b4477e837427')

    select tx_json:receipt:logs[0]:decoded:inputs from arbitrum.core.fact_transactions
    where tx_hash = lower('0x69688cebcc31c59671356b2be23189f8c0cfb66768a29ebdabe4b4477e837427')

    select tx_hash, tx_json:receipt:logs from arbitrum.core.fact_transactions
    where CONTAINS(tx_json:receipt:logs, lower('0x33fcfbf3af13dcc813053b7dcb7d3546b0c8a18c'))

    select tx_json🧾logs[0]:decoded:inputs from arbitrum.core.fact_transactions
    where tx_hash = lower('0x69688cebcc31c59671356b2be23189f8c0cfb66768a29ebdabe4b4477e837427')



    Run a query to Download Data