BlockTrackertransaction
    Updated 2025-02-17
    select
    date_trunc('day', block_timestamp) as date,
    case when SUCCESSFUL = 'TRUE' then 'Success' else 'Faild' end as type,
    count(DISTINCT transaction_hash) as txns,
    count(DISTINCT account) as n_accounts,
    avg(FEE_CHARGED/pow(10,7)) as avg_fee,
    avg( max_fee/pow(10,7)) as avg_max_fee
    from stellar.core.fact_transactions
    where block_timestamp::date >= current_date - 90
    group by 1 , 2

    select count(distinct id)
    from stellar.core.fact_operations

    select sum(TRANSACTION_COUNT),
    sum(operation_count)
    from stellar.core.fact_ledgers

    select sum(amount)
    from stellar.core.ez_operations
    where from_account = 'GBHNGLLIE3KWGKCHIKMHJ5HVZHYIK7WTBE4QF5PLAKL4CJGSEU7HZIW5'
    --or to_account = 'GBHNGLLIE3KWGKCHIKMHJ5HVZHYIK7WTBE4QF5PLAKL4CJGSEU7HZIW5'

    select
    sum(amount)
    from stellar.core.ez_operations
    where to_account = 'GBHNGLLIE3KWGKCHIKMHJ5HVZHYIK7WTBE4QF5PLAKL4CJGSEU7HZIW5'
    -- 855622039


    select
    sum(amount)
    from stellar.core.ez_operations
    where asset = 'USDPEND:GBHNGLLIE3KWGKCHIKMHJ5HVZHYIK7WTBE4QF5PLAKL4CJGSEU7HZIW5'
    and type_string = 'create_claimable_balance'

    Last run: 28 days ago
    DATE
    TYPE
    TXNS
    N_ACCOUNTS
    1
    2025-02-16 00:00:00.000Success170585245914
    2
    2025-01-23 00:00:00.000Faild314444540347
    3
    2024-11-28 00:00:00.000Success173717158418
    4
    2025-01-03 00:00:00.000Faild262275143939
    5
    2024-11-26 00:00:00.000Success207629260156
    6
    2025-02-07 00:00:00.000Faild276505941806
    7
    2025-01-10 00:00:00.000Success150935842683
    8
    2024-12-06 00:00:00.000Success193208951845
    9
    2025-01-18 00:00:00.000Success159709945405
    10
    2024-11-27 00:00:00.000Faild290495337369
    11
    2025-02-11 00:00:00.000Faild262490641403
    12
    2025-01-05 00:00:00.000Success169579792574
    13
    2025-01-08 00:00:00.000Faild326679243939
    14
    2025-02-06 00:00:00.000Success181039251674
    15
    2025-01-19 00:00:00.000Success151334146477
    16
    2024-12-01 00:00:00.000Faild311090146419
    17
    2024-12-23 00:00:00.000Success165911246050
    18
    2025-01-08 00:00:00.000Success167139647187
    19
    2024-11-27 00:00:00.000Success208932453184
    20
    2025-01-16 00:00:00.000Faild361496843911
    ...
    182
    9KB
    43s