hyoeisemanStarting off transactions
    Updated 2022-07-17
    with first_tx_type as (select
    from_address,
    to_label_type,
    ROW_NUMBER() OVER (
    PARTITION BY from_address
    ORDER BY block_timestamp asc
    ) as row_num
    from flipside_prod_db.polygon.transactions
    qualify row_num =1)
    select count(distinct from_address) from first_tx_type where to_label_type='nft'
    Run a query to Download Data