10BlockchainA. Nombre total de transactions Mantle par jour
    Updated 2025-02-24
    SELECT
    DATE_TRUNC('day', block_timestamp) AS day,
    COUNT(*) AS total_tx_count
    FROM mantle.core.fact_transactions
    GROUP BY 1
    ORDER BY 1;

    Last run: about 2 months ago
    DAY
    TOTAL_TX_COUNT
    1
    2023-07-02 00:00:00.0002
    2
    2023-07-03 00:00:00.000354
    3
    2023-07-04 00:00:00.000275
    4
    2023-07-05 00:00:00.000387
    5
    2023-07-06 00:00:00.000273
    6
    2023-07-07 00:00:00.000351
    7
    2023-07-08 00:00:00.000296
    8
    2023-07-09 00:00:00.000291
    9
    2023-07-10 00:00:00.000335
    10
    2023-07-11 00:00:00.000607
    11
    2023-07-12 00:00:00.000564
    12
    2023-07-13 00:00:00.000515
    13
    2023-07-14 00:00:00.000495
    14
    2023-07-15 00:00:00.000457
    15
    2023-07-16 00:00:00.000379
    16
    2023-07-17 00:00:00.0008313
    17
    2023-07-18 00:00:00.00013488
    18
    2023-07-19 00:00:00.0007568
    19
    2023-07-20 00:00:00.00012410
    20
    2023-07-21 00:00:00.00017793
    ...
    604
    21KB
    3s