Movement Team0. Transactions (Day)
    Updated 2 days ago
    with base as (Select
    date_trunc('day',BLOCK_TIMESTAMP) as daily,
    count(*) as "Transactions",
    sum("Transactions") over (order by daily asc) as "Cumulative Transactions"
    from movement.core.fact_transactions
    where SUCCESS = 'TRUE'
    group by 1)
    ,
    blocks as ( select date_trunc('day',BLOCK_TIMESTAMP) as daily,
    count(distinct BLOCK_NUMBER) as "Blocks",
    sum("Blocks") over (order by daily asc) as "Cumulative Blocks"
    from movement.core.fact_blocks
    group by 1
    )

    select a.daily,
    "Transactions",
    "Blocks",
    "Cumulative Blocks"
    from base a left outer join blocks b on a.daily = b.daily
    Last run: 2 days ago
    DAILY
    Transactions
    Blocks
    Cumulative Blocks
    1
    2025-02-10 00:00:00.000150504028
    2
    2024-12-24 00:00:00.00072243199
    3
    2024-12-13 00:00:00.0006214
    4
    2025-02-04 00:00:00.0001553880
    5
    2024-12-20 00:00:00.00016712513088
    6
    2025-01-18 00:00:00.00072243816
    7
    2025-04-04 00:00:00.000157385024327212
    8
    2025-01-04 00:00:00.00072243458
    9
    2025-03-31 00:00:00.000211309100295305
    10
    2025-02-13 00:00:00.0004341474534
    11
    2025-02-17 00:00:00.0004601565112
    12
    2025-02-16 00:00:00.000155524956
    13
    2025-03-02 00:00:00.0007258242415628
    14
    2025-01-10 00:00:00.00072243605
    15
    2025-03-22 00:00:00.0003477510703223893
    16
    2025-03-24 00:00:00.000268158655239836
    17
    2025-01-02 00:00:00.00069233410
    18
    2025-04-19 00:00:00.0005149013931488524
    19
    2025-02-11 00:00:00.0005471874215
    20
    2025-04-12 00:00:00.0003891511283386402
    ...
    113
    5KB
    1s