TOTAL_FEE | AVG_FEE | |
---|---|---|
1 | 619.974694 | 0.2075576478 |
hessAvg mint Fee
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
26
›
⌄
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
sum(fees) as total_fee,
avg(fees) as avg_fee
from fee
where fees < 1
Last run: 11 days ago
1
27B
192s