peteerTypes of NFT transactions
    Updated 2022-09-07
    select
    case
    when event_inputs:from = '0x0000000000000000000000000000000000000000' then 'Mint'
    when event_inputs:to = '0x0000000000000000000000000000000000000000' then 'Burn'
    else 'Transfers'
    end as label,
    count(*) as total
    from
    optimism.core.fact_event_logs
    where
    topics[0] = '0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef'
    and
    event_inputs:tokenId is not null
    group by 1
    Run a query to Download Data