boomer772023-03-30 10:58 AM
    Updated 2023-03-30
    with hc as (select *
    from polygon.core.ez_nft_transfers
    where nft_address = '0x09421f533497331e1075fdca2a16e9ce3f52312b'),

    pay as (select *
    from polygon.core.fact_transactions
    where tx_hash in (select tx_hash from hc))

    select *
    from pay
    limit 1000
    Run a query to Download Data