hessDaily Purchased Amount (Self-Purchased)
    Updated 2025-02-12
    with base as (select a.block_timestamp,
    a.tx_hash,
    origin_from_address,
    '0x' || substr(topics[1],27) as token_address,
    '0x' || substr(topics[2],27) as creator_address,
    '' as mcapInEth,
    regexp_substr_all(substr(input_data,11, len(input_data)), '.{64}') as segmented,
    TRIM(TRY_HEX_DECODE_STRING(segmented[8]::STRING), '\x00') AS name,
    TRIM(TRY_HEX_DECODE_STRING(segmented[10]::STRING), '\x00') AS symbol,
    TRIM(TRY_HEX_DECODE_STRING(segmented[12]::STRING), '\x00') AS description
    from ronin.core.fact_event_logs a join ronin.core.fact_transactions b on a.tx_hash = b.tx_hash
    where topics[0] = '0xf372df0af3c16a1deb41b25691dd807a3836ba8f443e83d24c1406ae3748232e'
    and a. TX_SUCCEEDED = 'TRUE'
    and origin_to_address = '0xa54b0184d12349cf65281c6f965a74828ddd9e8f'
    )

    select block_timestamp::date as date,
    sum(amount) as "Amount (RON)",
    sum(amount_usd) as "Amount (USD)"
    from ronin.core.ez_native_transfers
    where tx_hash in (select tx_hash from base)
    group by 1
    Last run: about 2 months ago
    DATE
    Amount (RON)
    Amount (USD)
    1
    2025-02-01 00:00:00.00034515.5362052851369.383935807
    2
    2025-01-27 00:00:00.000172562.688458499261112.884467371
    3
    2025-02-04 00:00:00.00014567.28517909715893.562437149
    4
    2025-01-28 00:00:00.000116145.14036754175984.583485865
    5
    2025-02-11 00:00:00.0007954.8133855639199.31
    6
    2025-01-24 00:00:00.000188460.784043646313391.348527592
    7
    2025-01-29 00:00:00.00058181.379610185145.291017544
    8
    2025-02-03 00:00:00.0003244.2954145823566.061804966
    9
    2025-01-21 00:00:00.000274425.341151212473523.34
    10
    2025-02-05 00:00:00.00011630.4910511612054.893419402
    11
    2025-01-25 00:00:00.000236184.554599204383558.445424476
    12
    2025-02-07 00:00:00.0008287.6126061858716.91
    13
    2025-02-12 00:00:00.00020481.98638092523747.66721
    14
    2025-02-09 00:00:00.0006309.6648019726889.8483375
    15
    2025-02-10 00:00:00.00012740.0680068214120.11
    16
    2025-01-31 00:00:00.00029877.89818381545608.125683888
    17
    2025-02-08 00:00:00.0003847.0504004754062.6
    18
    2025-02-02 00:00:00.00010024.35049605113370.493683716
    19
    2025-01-30 00:00:00.00057209.31208098586306.96986168
    20
    2025-01-26 00:00:00.000148523.651998205240584.298621387
    23
    1KB
    3s