Updated 3 days ago
    with

    main as (
    select
    tx_hash,
    block_timestamp,
    from_address as user
    from
    mezo.testnet.fact_transactions
    where
    tx_succeeded
    )

    select
    count(distinct tx_hash) as transactions,
    count(distinct user) as users,
    transactions / users as transactions_per_user,
    users / count(distinct block_timestamp::date) as daily_users
    from
    main

    Last run: 3 days ago
    TRANSACTIONS
    USERS
    TRANSACTIONS_PER_USER
    DAILY_USERS
    1
    4724193019515.645604915
    1
    30B
    2s