hessMint Fees
    Updated 2025-04-05
    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
    MINUTE
    TOTAL_FEE
    AVG_FEE
    1
    2024-02-08 18:03:00.0003.4138230.0975378
    2
    2024-02-08 19:03:00.00025.3532550.09425001859
    3
    2024-02-08 20:01:00.0008.9055960.07483694118
    4
    2024-02-08 19:58:00.0002.0210670.09186668182
    5
    2024-02-08 19:56:00.0001.0487150.0655446875
    6
    2024-02-08 18:25:00.0000.1672890.055763
    7
    2024-02-08 19:53:00.0000.528620.052862
    8
    2024-02-08 17:34:00.0006.5237650.815470625
    9
    2024-02-08 18:00:00.0000.1564980.052166
    10
    2024-02-08 17:32:00.0004.808190.6868842857
    11
    2024-02-08 18:33:00.0000.0478150.047815
    12
    2024-02-08 19:51:00.0000.1789310.05964366667
    13
    2024-02-08 19:02:00.00019.9140510.1260382975
    14
    2024-02-08 17:57:00.0007.2475770.5575059231
    15
    2024-02-08 19:52:00.0000.6063490.05512263636
    16
    2024-02-08 17:42:00.00011.1845720.9320476667
    17
    2024-02-08 18:49:00.0008.8452440.7371036667
    18
    2024-02-08 19:14:00.0000.0976940.048847
    19
    2024-02-08 17:58:00.00011.637540.969795
    20
    2024-02-08 18:45:00.00017.214230.6375640741
    ...
    138
    7KB
    217s