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


    QueryRunArchived: QueryRun has been archived