permaryscientific-red
    Updated 7 days ago
    select
    count(*) as total_transactions,
    sum(case when successful then 1 else 0 end) as successful_transactions,
    sum(case when not successful then 1 else 0 end) as failed_transactions,
    sum(operation_count) as total_operations
    from stellar.core.fact_transactions
    where closed_at >= date_trunc('month', current_date) - interval '12 months'



    Last run: 7 days ago
    TOTAL_TRANSACTIONS
    SUCCESSFUL_TRANSACTIONS
    FAILED_TRANSACTIONS
    TOTAL_OPERATIONS
    1
    171997623467351983610464563983782086579
    1
    46B
    47s