SniperTotal NFTs minted GarageCard v2
    Updated 2023-10-28
    with mint as (
    select
    event_data:id as id
    from flow.core.fact_events
    where event_contract = ('A.d0bcefdf1e67ea85.HWGarageCardV2')
    and EVENT_TYPE = 'Mint'
    and TX_SUCCEEDED = 'true'
    )

    select
    count(DISTINCT id) as NFTs,
    (NFTs * 25) as volume
    from mint


    Run a query to Download Data