Hour | Day Name | TX_COUNT | |
---|---|---|---|
1 | 0 | 1 - Mon | 4758 |
2 | 0 | 2 - Tue | 5719 |
3 | 0 | 3 - Wed | 4807 |
4 | 0 | 4 - Thu | 7256 |
5 | 0 | 5 - Fri | 6651 |
6 | 0 | 6 - Sat | 5769 |
7 | 0 | 7 - Sun | 6438 |
8 | 1 | 1 - Mon | 5613 |
9 | 1 | 2 - Tue | 11072 |
10 | 1 | 3 - Wed | 5760 |
11 | 1 | 4 - Thu | 9798 |
12 | 1 | 5 - Fri | 6302 |
13 | 1 | 6 - Sat | 4500 |
14 | 1 | 7 - Sun | 6344 |
15 | 2 | 1 - Mon | 8516 |
16 | 2 | 2 - Tue | 8770 |
17 | 2 | 3 - Wed | 4198 |
18 | 2 | 4 - Thu | 18477 |
19 | 2 | 5 - Fri | 7915 |
20 | 2 | 6 - Sat | 6520 |
elsinaTime Pattern
Updated 2025-05-26
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 price as (
select
date_trunc('day', hour) as date,
avg(price) as price_usd
from crosschain.price.ez_prices_hourly
where
blockchain = 'ethereum' and
token_address = lower('0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599' )
group by 1
),
base as (
SELECT
block_timestamp,
from_address,
tx_hash,
value as amount,
amount * price_usd as amount_usd,
tx_fee
from mezo.testnet.fact_transactions left join price on block_timestamp::date = date
where
tx_succeeded = 'TRUE'
)
SELECT
date_part('hour', block_timestamp) as "Hour",
case when dayofweek(block_timestamp)=0 then 7 else dayofweek(block_timestamp) end||' - '||dayname(block_timestamp) as "Day Name",
COUNT(DISTINCT tx_hash) AS tx_count
FROM base
GROUP BY 1, 2
ORDER BY 1,2 asc
Last run: 13 days ago
...
168
3KB
3s