Sbhn_NPsenior-violet
    Updated 2025-02-18
    select date_trunc('month',block_timestamp) as date,
    type_string as type,
    count(*) as operations
    from stellar.core.ez_operations
    where date >= '2024-01-01'
    group by 1,2