Hessishar mints
    Updated 6 days ago
    with mints as (select a.BLOCK_TIMESTAMP, b.EVENT_DATA:to as minter, a.tx_hash, a.EVENT_DATA:nft_id as id,
    a.EVENT_DATA:price/1e8 as launchpad_fee
    from movement.core.fact_events a
    join movement.core.fact_events b
    on a.tx_hash = b.tx_hash
    where --tx_hash = '0xf46d0a7b539004dc55106a116034e2eacf61ba5066ce298d1ab1180a85eb6acf' and
    a.EVENT_RESOURCE = 'MintNftEvent'
    and a.EVENT_MODULE = 'launchpad'
    and a.EVENT_DATA:collection_id = 'aa5eb001-14af-4915-8f3c-24befe15d884'
    and a.SUCCESS = 'true'
    and b.EVENT_RESOURCE = 'Transfer')

    select
    date_trunc('hour',block_timestamp) as time,
    count(distinct id) as "Mints",
    count(distinct minter) as "Minters",
    sum("Mints") over (order by time) as "Cumulative mints",
    ("Cumulative mints"+136)*100/2211 as "Overall mint status",
    sum(launchpad_fee) as "Launchpad fee",
    sum("Launchpad fee") over (order by time) as "Cumulative fee"
    from mints
    where block_timestamp >= '2025-03-27 08:00:00.000'
    group by all
    order by 1 desc

    Last run: 6 days ago
    TIME
    Mints
    Minters
    Cumulative mints
    Overall mint status
    Launchpad fee
    Cumulative fee
    1
    2025-03-28 14:00:00.0001120751002.1052631630005.63318488
    2
    2025-03-28 13:00:00.00022207499.9547724.2105263230003.52792172
    3
    2025-03-28 12:00:00.00022207299.8643154.1454383129999.3173954
    4
    2025-03-28 11:00:00.00022207099.7738584.2105449929995.17195709
    5
    2025-03-28 09:00:00.00033206899.6834016.3784614229990.9614121
    6
    2025-03-28 08:00:00.00033206599.5477166.4288144329984.58295068
    7
    2025-03-28 07:00:00.00033206299.4120316.4655172629978.15413625
    8
    2025-03-28 06:00:00.00088205999.27634617.1627868829971.68861899
    9
    2025-03-28 05:00:00.00022205198.9145184.2735042829954.52583211
    10
    2025-03-28 04:00:00.00011204998.8240622.1052631629950.25232783
    11
    2025-03-28 03:00:00.00066204898.77883312.6138876829948.14706467
    12
    2025-03-28 02:00:00.00022204298.5074634.1753653629935.53317699
    13
    2025-03-28 01:00:00.00077204098.41700614.5531583629931.35781163
    14
    2025-03-28 00:00:00.00044203398.1004078.3338188729916.80465327
    15
    2025-03-27 23:00:00.00055202997.91949310.2291394529908.4708344
    16
    2025-03-27 22:00:00.0001010202497.69335120.333482429898.24169495
    17
    2025-03-27 21:00:00.0001010201497.24106720.3087290529877.90821255
    18
    2025-03-27 20:00:00.0001919200496.78878338.5151008429857.5994835
    19
    2025-03-27 19:00:00.0002424198595.92944448.3750256829819.08438266
    20
    2025-03-27 18:00:00.0002929196194.84396258.6361481329770.70935698
    23
    2KB
    3s