MINUTE | TOTAL_FEE | AVG_FEE | |
---|---|---|---|
1 | 2024-02-08 18:03:00.000 | 3.413823 | 0.0975378 |
2 | 2024-02-08 19:03:00.000 | 25.353255 | 0.09425001859 |
3 | 2024-02-08 20:01:00.000 | 8.905596 | 0.07483694118 |
4 | 2024-02-08 19:58:00.000 | 2.021067 | 0.09186668182 |
5 | 2024-02-08 19:56:00.000 | 1.048715 | 0.0655446875 |
6 | 2024-02-08 18:25:00.000 | 0.167289 | 0.055763 |
7 | 2024-02-08 19:53:00.000 | 0.52862 | 0.052862 |
8 | 2024-02-08 17:34:00.000 | 6.523765 | 0.815470625 |
9 | 2024-02-08 18:00:00.000 | 0.156498 | 0.052166 |
10 | 2024-02-08 17:32:00.000 | 4.80819 | 0.6868842857 |
11 | 2024-02-08 18:33:00.000 | 0.047815 | 0.047815 |
12 | 2024-02-08 19:51:00.000 | 0.178931 | 0.05964366667 |
13 | 2024-02-08 19:02:00.000 | 19.914051 | 0.1260382975 |
14 | 2024-02-08 17:57:00.000 | 7.247577 | 0.5575059231 |
15 | 2024-02-08 19:52:00.000 | 0.606349 | 0.05512263636 |
16 | 2024-02-08 17:42:00.000 | 11.184572 | 0.9320476667 |
17 | 2024-02-08 18:49:00.000 | 8.845244 | 0.7371036667 |
18 | 2024-02-08 19:14:00.000 | 0.097694 | 0.048847 |
19 | 2024-02-08 17:58:00.000 | 11.63754 | 0.969795 |
20 | 2024-02-08 18:45:00.000 | 17.21423 | 0.6375640741 |
hessMint Fees
Updated 2025-04-05
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
›
⌄
with hash as ( select DISTINCT tx_id
from sei.core.fact_msg_attributes
where attribute_value = 'sei1cujl8ujhc36lp7sr98x30u0aeqtjlj68kll5rqqr9dke5xvn2ltquzhysl'
and attribute_key = 'collection'
and block_timestamp::date >= '2024-02-08'
and tx_id in (select tx_id from sei.core.fact_msg_attributes
where attribute_value = 'mint'
and attribute_key = 'action'
and block_timestamp::date >= '2024-02-08'))
,
fee as ( select block_timestamp, split(fee,'usei')[0]/pow(10,6) as fees
from sei.core.fact_transactions
where tx_id in (select tx_id from hash))
select trunc(block_timestamp,'minute') as minute,
sum(fees) as total_fee,
avg(fees) as avg_fee
from fee
where fees < 1
group by 1
Last run: 18 days ago
...
138
7KB
217s