Day | Hour | users | Transactions | |
---|---|---|---|---|
1 | 7. Sunday | 0 | 108677 | 260470 |
2 | 4. Thursday | 0 | 133453 | 302801 |
3 | 6. Saturday | 0 | 115458 | 270233 |
4 | 5. Friday | 0 | 126881 | 307436 |
5 | 3. Wednesday | 0 | 129318 | 276176 |
6 | 2. Tuesday | 0 | 126358 | 305539 |
7 | 1. Monday | 0 | 122499 | 308438 |
8 | 7. Sunday | 1 | 118824 | 257465 |
9 | 6. Saturday | 1 | 121690 | 264106 |
10 | 3. Wednesday | 1 | 141072 | 294712 |
11 | 1. Monday | 1 | 135187 | 306997 |
12 | 4. Thursday | 1 | 146595 | 308849 |
13 | 5. Friday | 1 | 142141 | 323110 |
14 | 2. Tuesday | 1 | 142027 | 331773 |
15 | 6. Saturday | 2 | 133907 | 279142 |
16 | 7. Sunday | 2 | 133598 | 275589 |
17 | 5. Friday | 2 | 157357 | 330695 |
18 | 1. Monday | 2 | 140272 | 311525 |
19 | 2. Tuesday | 2 | 154691 | 334991 |
20 | 4. Thursday | 2 | 149874 | 312744 |
hessdistinguished-green
Updated 2025-03-30
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
with users as ( select block_timestamp,
tx_id,
attribute_value as address
from sei.core.fact_msg_attributes
where attribute_key in ('sender','fee_payer')
and tx_id not in (select tx_id from sei.core.fact_transactions where fee = '0usei')
and block_timestamp::Date >= current_date - 90
UNION
select block_timestamp,
tx_id,
TX_FROM as address
from sei.core.fact_transactions
where fee != '0usei'
and block_timestamp::Date >= current_date - 90
UNION
select block_timestamp,
tx_hash as tx_id,
from_address as address
from sei.core_evm.fact_transactions
where block_timestamp::Date >= current_date - 90
)
select
case
when extract(dow from block_timestamp) = 0 then '7. Sunday'
when extract(dow from block_timestamp) = 1 then '1. Monday'
when extract(dow from block_timestamp) = 2 then '2. Tuesday'
when extract(dow from block_timestamp) = 3 then '3. Wednesday'
when extract(dow from block_timestamp) = 4 then '4. Thursday'
when extract(dow from block_timestamp) = 5 then '5. Friday'
when extract(dow from block_timestamp) = 6 then '6. Saturday'
end as "Day",
date_part(hour, block_timestamp) as "Hour",
count(distinct address) as "users",
count(DISTINCT tx_id) as "Transactions"
from users
Last run: 28 days ago
...
168
5KB
594s