aureasarsanedesaptos in 2024 5
    Updated 2025-02-03
    SELECT
    DATE_TRUNC('month', t.block_timestamp) AS month,
    p.label_type as sector,
    COUNT(DISTINCT t.tx_hash) AS total_transactions,
    COUNT(DISTINCT sender) AS active_users
    FROM aptos.core.fact_transactions t
    join aptos.core.fact_events e on t.tx_hash=e.tx_hash
    LEFT JOIN aptos.core.dim_labels p
    ON e.event_address = p.address
    WHERE p.label_Type IS NOT NULL and DATE_TRUNC('day', t.block_timestamp) between '2024-01-01' and '2024-12-31'
    GROUP BY 1, 2
    ORDER BY 1, 3 DESC



    Last run: 3 months ago
    MONTH
    SECTOR
    TOTAL_TRANSACTIONS
    ACTIVE_USERS
    1
    2024-01-01 00:00:00.000dex5294100263121
    2
    2024-01-01 00:00:00.000dapp11291274589
    3
    2024-01-01 00:00:00.000nft423400113548
    4
    2024-01-01 00:00:00.000bridge15241648901
    5
    2024-01-01 00:00:00.000defi8810030189
    6
    2024-01-01 00:00:00.000token158927199
    7
    2024-02-01 00:00:00.000dex5641414150792
    8
    2024-02-01 00:00:00.000dapp12959918288
    9
    2024-02-01 00:00:00.000nft593834238492
    10
    2024-02-01 00:00:00.000defi15632439373
    11
    2024-02-01 00:00:00.000bridge11414136836
    12
    2024-02-01 00:00:00.000token110553674
    13
    2024-03-01 00:00:00.000dex7783342593537
    14
    2024-03-01 00:00:00.000dapp155731353357
    15
    2024-03-01 00:00:00.000bridge567713160513
    16
    2024-03-01 00:00:00.000nft496049191970
    17
    2024-03-01 00:00:00.000defi453301132474
    18
    2024-03-01 00:00:00.000token104333146
    19
    2024-04-01 00:00:00.000dex5933486214460
    20
    2024-04-01 00:00:00.000dapp140494634036
    72
    3KB
    493s