Eman-Raznft minting over time
    Updated 2025-04-04
    with overview as (select block_timestamp, tx_hash, from_address as minter, tx_fee as mint_fee, value as price, case
    when (to_address='0xb33d7138c53e516871977094b249c8f2ab89a4f4' and origin_function_signature='0xa0712d68') then 'Open Edition Chogstar'
    when (to_address='0xe25c57ff3eea05d0f8be9aaae3f522ddc803ca4e' and origin_function_signature='0x1249c58b') then 'Chapter1: The Genesis'
    when (to_address='0xdd23ade69fc2fe1934aa36c5ab12f6dc58a3446f' and origin_function_signature='0x1249c58b') then 'Community Member of Monad'
    when (to_address='0x51e6da0e284609cd96e3134b12e94b4c4f0ca241' and origin_function_signature='0xa7244eb6') then 'Kintsu Beta Access Pass'
    when (to_address='0x1195cf65f83b3a5768f3c496d3a05ad6412c64b7' and origin_function_signature='0xd123b4d8') then 'Layer3 CUBE'
    end as collection_name
    from monad.testnet.fact_transactions
    where tx_succeeded='TRUE' and
    to_address in ('0xb33d7138c53e516871977094b249c8f2ab89a4f4','0xe25c57ff3eea05d0f8be9aaae3f522ddc803ca4e',
    '0xdd23ade69fc2fe1934aa36c5ab12f6dc58a3446f','0x51e6da0e284609cd96e3134b12e94b4c4f0ca241',
    '0x1195cf65f83b3a5768f3c496d3a05ad6412c64b7')
    and origin_function_signature in ('0xa0712d68','0x1249c58b','0x1249c58b','0xa7244eb6','0xd123b4d8'))

    select date_trunc('{{Time_Frame}}',block_timestamp) as "Date", count(distinct tx_hash) as "Number of NFTs Minted",
    sum("Number of NFTs Minted") over (order by "Date") as "Total Number of NFTs Minted", sum(price) as "Minting Volume (MON)",
    sum("Minting Volume (MON)") over (order by "Date") as "Total Minting Volume (MON)", sum(mint_fee) as "Minting Fees (MON)",
    sum("Minting Fees (MON)") over (order by "Date") as "Total Minting Fees (MON)", count(distinct minter) as "Number of Minters"
    from overview
    where collection_name='{{Collection_Name}}' AND BLOCK_TIMESTAMP::DATE>='2025-02-19'
    group by 1
    order by 1

    Last run: 22 days ago
    Date
    Number of NFTs Minted
    Total Number of NFTs Minted
    Minting Volume (MON)
    Total Minting Volume (MON)
    Minting Fees (MON)
    Total Minting Fees (MON)
    Number of Minters
    1
    2025-02-19 03:00:00.00022000.009434850.009434851
    2
    2025-02-19 04:00:00.0001214000.08385299520.09328784522
    3
    2025-02-19 05:00:00.000721000.0299924040.12328024923
    4
    2025-02-19 09:00:00.000122000.0040360320.12731628121
    5
    2025-02-19 10:00:00.000527000.021920340.14923662121
    6
    2025-02-19 11:00:00.0001643000.09877358430.248010205511
    7
    2025-02-19 12:00:00.00047900.0057762120.0057762123.2593659683.50737617335
    8
    2025-02-19 13:00:00.00011220200.0057762121.7009738075.2083499897
    9
    2025-02-19 14:00:00.0008528700.0057762120.78761583055.99596581159
    10
    2025-02-19 15:00:00.0002304259100.00577621221.57186731727.5678331281345
    11
    2025-02-19 16:00:00.0005651824200.00577621234.05206455461.6198976822638
    12
    2025-02-19 17:00:00.000337824202400.005776212175.56929572237.18919340213362
    13
    2025-02-19 18:00:00.000276726969600.005776212144.25655529381.44574869113582
    14
    2025-02-19 19:00:00.00020222899180.0213709120.027147124106.253233233487.6989819249544
    15
    2025-02-19 20:00:00.0001972310964100.027147124109.053235971596.75221789611947
    16
    2025-02-19 21:00:00.0001087512051600.02714712456.899977108653.6521950045333
    17
    2025-02-19 22:00:00.000832712884300.02714712443.803066844697.4552618483178
    18
    2025-02-19 23:00:00.000788013672300.02714712441.059992122738.5152539693243
    19
    2025-02-20 00:00:00.000919814592100.02714712446.408822297784.9240762663772
    20
    2025-02-20 01:00:00.0001103515695600.02714712456.286999525841.2110757914974
    ...
    1064
    93KB
    154s