Updated 2025-05-16
    select
    date_trunc('day', block_timestamp) as date,
    count(distinct tx_id) as mining_txs,
    count(distinct SIGNERS[0]) as miners
    --min(BLOCK_TIMESTAMP) as min_date,
    --max(BLOCK_TIMESTAMP) as max_date,
    --count(distinct tx_id) / TIMESTAMPDIFF('HOUR', MIN(BLOCK_TIMESTAMP), MAX(BLOCK_TIMESTAMP)) AS avg_minted_per_hour
    from eclipse.core.fact_events
    where PROGRAM_ID = 'F1ULBrY2Tjsmb1L4Wt4vX6UtiWRikLoRFWooSpxMM6nR'
    and SUCCEEDED = 'TRUE'
    group by 1
    order by 1 asc

    /*
    select
    distinct TX_FROM,
    count(distinct tx_id) as txs,
    count(distinct tx_to) as users,
    sum(AMOUNT/pow(10,decimal)) as vol,
    from eclipse.core.fact_transfers
    where MINT = '64mggk2nXg6vHC1qCdsZdEFzd5QGN4id54Vbho4PswCF'
    and TX_FROM = 'Feh8eCUQaHGfdPyGEARmVse3m4NBGgaVYwMiKE3CdcPz'
    and SUCCEEDED = 'TRUE'
    group by 1
    order by 2 desc
    */


    Last run: about 1 month ago
    DATE
    MINING_TXS
    MINERS
    1
    2025-04-11 00:00:00.0009548
    2
    2025-04-12 00:00:00.000330900914023
    3
    2025-04-13 00:00:00.000551473215973
    4
    2025-04-14 00:00:00.000551967910684
    5
    2025-04-15 00:00:00.00054565587725
    6
    2025-04-16 00:00:00.00048546576104
    7
    2025-04-17 00:00:00.00039049864877
    8
    2025-04-18 00:00:00.00030160563772
    9
    2025-04-19 00:00:00.00024041913089
    10
    2025-04-20 00:00:00.00021908292622
    11
    2025-04-21 00:00:00.00018796862329
    12
    2025-04-22 00:00:00.00016655202063
    13
    2025-04-23 00:00:00.00015282471818
    14
    2025-04-24 00:00:00.00014479001617
    15
    2025-04-25 00:00:00.00014597301518
    16
    2025-04-26 00:00:00.00012720791332
    17
    2025-04-27 00:00:00.00010845571217
    18
    2025-04-28 00:00:00.0009693161178
    19
    2025-04-29 00:00:00.0008672611046
    20
    2025-04-30 00:00:00.000837510912
    36
    1KB
    10s