rajsUntitled Query
    Updated 2022-08-03
    SELECT
    to_address,
    count(*)
    from optimism.core.fact_transactions
    where tx_hash IN
    (
    SELECT
    tx_hash
    from optimism.core.ez_nft_sales
    where platform_name = 'quixotic'
    )
    group by 1
    order by 2 desc
    Run a query to Download Data