Updated 2025-04-03
    with

    main as (
    select
    tx_hash,
    block_timestamp,
    from_address as user,
    tx_fee
    from
    boba.core.fact_transactions
    )

    select
    count(distinct tx_hash) as transactions,
    count(distinct user) as users,
    sum(tx_fee) as volume_fee,
    avg(tx_fee) as average_fee,
    transactions / count(distinct block_timestamp::date) as daily_average_transactions,
    users / count(distinct block_timestamp::date) as daily_average_users
    from
    main


    Last run: 30 days ago
    TRANSACTIONS
    USERS
    VOLUME_FEE
    AVERAGE_FEE
    DAILY_AVERAGE_TRANSACTIONS
    DAILY_AVERAGE_USERS
    1
    16927361429881108.3825212070.0000654787509813498.69298234.280702
    1
    73B
    3s