hess8. Total Per Source
    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 1 month ago
    SOURCE
    ADDRESSES
    TRANSACTION
    Volume (USD)
    Avg Transactions per Address
    Avg Volume Per Address (USD)
    Avg Volume (USD)
    Max Volume (USD)
    Median Volume (USD)
    1
    BNB881165433293344.37994551.87741237790.40224738410647.0560856882704485.0050.993426
    2
    Avalanche199161164213366.67919128.095477322680.234568815034.738159492610020.44910375949.4
    3
    Scroll7477129869.5961293071.0405411754.9945422881686.61813154968492.3896762512.68336935
    4
    Arbitrum1316228586198463638.5246822.17185815078.5320258842864.1224730453350568.733178991.01
    5
    INK13728569794.243072152.080292509.447029724121.804961732200000.02
    6
    Linea284276110827.8710208120.971831390.238982468363.37006892163030.64708333310.543116667
    7
    Ethereum9980200901057684189.267912.013026105980.37968616326560.29805805612254121.24152971.97
    8
    MATLE1542822720127.289402741.83116917663.1642169014510.990529689425965.790.12
    9
    Optimism2475449727068627.22081741.8169710936.8190791182741.126807171409520.710.9985940704
    10
    Base814913406132822898.6302041.6451116299.2880881344771.4516158421999869.783014112.62
    11
    Polygon3054142057622.231388411.3573776746.3023979952367.804639112510887.9949264480.2661092341
    12
    Sei332312274000.12420752768909.0946729559844.156381851498969.103583333970.986529013
    12
    1KB
    572s