hess0. Total Inflow
    Updated 2025-03-06
    with eth_base as (select *,regexp_substr_all(SUBSTR(INPUT_DATA, 11, len(INPUT_DATA)), '.{64}') AS segmented_data,
    'Ethereum' as source
    from ethereum.core.fact_transactions
    where block_timestamp::Date >= current_date - 30
    and STATUS = 'SUCCESS')
    ,
    eth_transfer as ( select block_timestamp,
    tx_hash,
    origin_from_address,
    origin_to_address,
    '' as contract_address,
    'ETH' as symbol,
    amount,
    amount_usd
    from ethereum.core.ez_native_transfers
    where block_timestamp::Date >= current_date - 30
    union
    select block_timestamp,
    tx_hash,
    origin_from_address,
    origin_to_address,
    contract_address,
    symbol,
    amount,
    amount_usd
    from ethereum.core.ez_token_transfers
    where block_timestamp::Date >= current_date - 30
    )
    ,
    ethereum as ( select a.block_timestamp,
    source,
    a.tx_hash,
    origin_from_address,
    origin_to_address,
    contract_address,
    symbol,
    Last run: about 2 months ago
    ADDRESSES
    TRANSACTION
    Volume (USD)
    Avg Transactions per Address
    Avg Volume Per Address (USD)
    Source Chain
    Avg Volume (USD)
    Max Volume (USD)
    Median Volume (USD)
    1
    29547714091520908306.057972.41679451474.204015906129694.53864381712254121.24152971.03
    1
    97B
    432s