hessDaily Receivers
Updated 2024-07-17
99
1
2
3
4
5
6
7
8
9
10
11
12
›
⌄
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