freemartianOptimistic Explorer
    Updated 2022-08-03
    select
    count(distinct event_inputs:from) as sellers_count,
    contract_address
    from optimism.core.fact_event_logs
    where origin_to_address in (
    '0x20975da6eb930d592b9d78f451a9156db5e4c77b',
    '0x065e8a87b8f11aed6facf9447abe5e8c5d7502b6',
    '0x3f9da045b0f77d707ea4061110339c4ea8ecfa70')
    and event_name = 'Transfer'
    and event_inputs:tokenId is not null
    and block_timestamp::date > '2022-07-25'
    and block_timestamp::date < '2022-07-31'
    group by contract_address
    order by sellers_count desc
    limit 1
    Run a query to Download Data