Moeaxl txns t
    Updated 2024-12-22
    select
    date_trunc('week', BLOCK_TIMESTAMP)::date AS date,
    monthname(BLOCK_TIMESTAMP) AS Month,
    count(TX_id) AS "transactions ",
    count(distinct TX_FROM) AS "active addresses "
    from axelar.core.fact_transactions
    where TX_SUCCEEDED='TRUE'
    and BLOCK_TIMESTAMP between CURRENT_DATE - interval '6 months' and current_date
    group by 1,2


    Last run: 3 months ago
    DATE
    MONTH
    transactions
    active addresses
    1
    2024-08-19 00:00:00.000Aug23862836331
    2
    2024-08-05 00:00:00.000Aug26760806585
    3
    2024-12-30 00:00:00.000Jan18337514606
    4
    2024-08-26 00:00:00.000Aug18912075090
    5
    2024-11-25 00:00:00.000Dec4170853390
    6
    2024-09-09 00:00:00.000Sep22188775644
    7
    2024-12-02 00:00:00.000Dec30875728144
    8
    2024-12-30 00:00:00.000Dec7639902396
    9
    2024-09-16 00:00:00.000Sep23536866110
    10
    2025-01-06 00:00:00.000Jan17973033633
    11
    2024-08-12 00:00:00.000Aug25456156131
    12
    2024-12-23 00:00:00.000Dec29400445800
    13
    2024-12-16 00:00:00.000Dec32511716646
    14
    2024-07-29 00:00:00.000Aug18588034276
    15
    2024-10-07 00:00:00.000Oct25922926776
    16
    2024-09-23 00:00:00.000Sep25854686762
    17
    2024-09-30 00:00:00.000Oct19224415602
    18
    2024-08-26 00:00:00.000Sep2618841694
    19
    2024-09-30 00:00:00.000Sep3539851897
    20
    2024-11-04 00:00:00.000Nov26173957638
    33
    2KB
    38s