> ## Documentation Index
> Fetch the complete documentation index at: https://docs.chainstack.com/llms.txt
> Use this file to discover all available pages before exploring further.

# eth_maxPriorityFeePerGas | Ronin

> The eth_maxPriorityFeePerGas method returns the current maximum priority fee per gas in wei. eth_maxPriorityFeePerGas on Ronin via Chainstack.

The `eth_maxPriorityFeePerGas` method returns the current maximum priority fee per gas in wei. This fee, also known as a "tip," is an additional amount paid directly to miners to incentivize them to include a transaction in a block. This is part of the EIP-1559 transaction pricing mechanism.

## Parameters

* None

## Response

* `result`: The current maximum priority fee per gas, returned as a hexadecimal number.

## Use case

This method is crucial for users and applications to dynamically adjust transaction fees to ensure timely processing, especially during periods of high network congestion. By specifying an appropriate max priority fee, transactions can be prioritized by miners without overpaying.


## OpenAPI

````yaml openapi/ronin_node_api/eth_maxPriorityFeePerGas.json POST /3997273fc956a67dc6982384500e669e
openapi: 3.0.0
info:
  title: eth_maxPriorityFeePerGas
  version: 1.0.0
  description: >-
    Returns the current maximum priority fee per gas in wei. This fee is paid to
    miners on top of the base fee  for transaction inclusion.
servers:
  - url: https://ronin-mainnet.core.chainstack.com
security: []
paths:
  /3997273fc956a67dc6982384500e669e:
    post:
      tags:
        - blockchain
      summary: Get current max priority fee per gas
      operationId: getMaxPriorityFeePerGas
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                id:
                  type: integer
                  default: 1
                jsonrpc:
                  type: string
                  default: '2.0'
                method:
                  type: string
                  default: eth_maxPriorityFeePerGas
                params:
                  type: array
                  default: []
      responses:
        '200':
          description: Current max priority fee per gas in wei
          content:
            application/json:
              schema:
                type: object
                properties:
                  jsonrpc:
                    type: string
                  id:
                    type: integer
                  result:
                    type: string

````