Afonso_DiazOvertime
    Updated 2025-04-01
    with

    pricet as (
    select
    hour::date as date,
    avg(price) as token_price_usd
    from
    ronin.price.ez_prices_hourly
    where
    symbol = 'RON'
    group by 1
    ),

    main as (
    select
    tx_hash,
    block_timestamp,
    from_address as user,
    value as amount,
    utils.udf_hex_to_string(right(input_data, 128)) as domain_name
    from
    ronin.core.fact_transactions
    where
    tx_succeeded
    and to_address = '0x662852853614cbbb5d04bf2e29955b97e3c50b69'
    and domain_name is not null
    ),

    final as (
    select
    main.*,
    amount * token_price_usd as amount_usd
    from
    main
    left join
    Last run: 2 months ago
    DATE
    TRANSACTIONS
    USERS
    VOLUME_RON
    AVERAGE_AMOUNT_RON
    VOLUME_USD
    AVERAGE_AMOUNT_USD
    CUMULATIVE_TRANSACTIONS
    CUMULATIVE_VOLUME_RON
    CUMULATIVE_VOLUME_USD
    1
    2024-10-01 00:00:00.0005883265770.6889280189.8140968169110.45842442315.4939769125885770.6889280189110.458424423
    2
    2024-11-01 00:00:00.000203592911296.5655149895.55113784516392.568100378.05531602262317067.25444300625503.026524793
    3
    2024-12-01 00:00:00.0008136702681.7652321533.2986042225688.4518697676.996865768343619749.0196751631191.47839456
    4
    2025-01-01 00:00:00.00012589906903.1794176575.4874240211998.7312113669.537942139469426652.19909281743190.209605926
    5
    2025-02-01 00:00:00.00094960010667.57188722711.24085551912812.44092452513.500991491564337319.77098004456002.650530451
    6
    2025-03-01 00:00:00.0004664154253.5438589049.1277765213598.8807640217.722920094610941573.31483894859601.531294472
    6
    765B
    7s