cristinatintoannonz Collection MINTS
    Updated 2025-04-15
    SELECT
    date_trunc('hour',x.block_timestamp) as week,
    count(distinct case when x.event_resource='Mint' then x.event_data:index:value end) as nft_mints,
    sum(nft_mints) over (order by week) as total_nft_mints,
    count(distinct case when xx.event_resource='TransferEvent' then xx.event_data:to end) as minter,
    sum(minter) over (order by week) as total_minters,
    SUM(case when y.event_resource='DepositEvent' then y.event_data:amount/pow(10,8) end) AS sales_volume,
    sum(sales_volume) over (order by week) as total_sales_volume
    FROM aptos.core.fact_events x
    join aptos.core.fact_events xx on x.tx_hash=xx.tx_hash
    join aptos.core.fact_events y on x.tx_hash=y.tx_hash
    where date_trunc('day',x.block_timestamp)>'2024-10-01' and x.event_resource='Mint' and x.event_module='collection' and xx.event_resource='TransferEvent' and y.event_resource='DepositEvent'
    and x.event_data:collection='0x586457e26a358ca6f5ffa30a23840ede1883a3824b186784b6dbd427e23b4c96'
    group by 1
    order by 1 desc








    Last run: about 2 months ago
    WEEK
    NFT_MINTS
    TOTAL_NFT_MINTS
    MINTER
    TOTAL_MINTERS
    SALES_VOLUME
    TOTAL_SALES_VOLUME
    1
    2024-12-06 20:00:00.00024455524052200
    2
    2024-12-06 19:00:00.000363113628200
    3
    2024-12-06 18:00:00.00027527524624600
    3
    143B
    180s