elsinaDistribution of User Transactions
    Updated 2025-03-21
    with price as (
    select
    date_trunc('day', hour) as date,
    avg(price) as price_usd
    from crosschain.price.ez_prices_hourly
    where
    blockchain = 'ethereum' and
    token_address = '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2'
    group by 1
    ),

    base as (
    SELECT
    block_timestamp,
    from_address,
    tx_hash,
    value as amount,
    amount * price_usd as amount_usd,
    tx_fee
    from ink.core.fact_transactions left join price on block_timestamp::date = date
    where
    tx_succeeded = TRUE and
    block_timestamp::date >= '2024-12-18'
    ),


    per_user as (
    SELECT
    from_address as user,
    count(distinct tx_hash) as tx_count
    from base
    group by user
    )

    select
    case
    Last run: 14 days ago
    DIS
    USER_COUNT
    USER_COUNT_PERCENTAGE
    1
    H. more than 12847221.396818
    2
    B. 2-310735831.757648
    3
    E. 16-31249547.381661
    4
    C. 4-7211936.269117
    5
    A. 14081612.073811
    6
    D. 8-153862211.424802
    7
    G. 64-127159654.722618
    8
    F. 32-638442424.973525
    8
    229B
    19s