elsinaHow many Polygon users started off with NFTs?
    Updated 2022-07-16
    with nfts_contract as (
    select address, project_name
    from polygon.core.dim_labels
    where project_name ilike '%nft%' or project_name ilike '%opensea%'
    ),
    txs as (
    select tx_hash as tx
    from polygon.core.fact_event_logs, nfts_contract
    where address = contract_address
    )
    select count(distinct tx_hash)
    from polygon.core.fact_transactions, txs
    where tx_hash = tx and nonce = 0
    Run a query to Download Data