hessDaily Receivers
    Updated 2024-07-17
    select date(block_timestamp) as date,
    count(DISTINCT to_address) as receivers,
    count(DISTINCT from_address) as senders,
    sum(value) as Sei_amount,
    avg(tx_fee)as "Avg Fee (Sei)"
    from sei.core_evm.fact_transactions
    where value != 0
    and block_timestamp::date >= '2024-05-27'
    and status = 'SUCCESS'
    group by 1


    QueryRunArchived: QueryRun has been archived