curl --request POST \
--url https://ronin-mainnet.core.chainstack.com/3997273fc956a67dc6982384500e669e \
--header 'Content-Type: application/json' \
--data '{
"id": 1,
"jsonrpc": "2.0",
"method": "eth_maxPriorityFeePerGas",
"params": []
}'
{
"jsonrpc": "<string>",
"id": 123,
"result": "<string>"
}
curl --request POST \
--url https://ronin-mainnet.core.chainstack.com/3997273fc956a67dc6982384500e669e \
--header 'Content-Type: application/json' \
--data '{
"id": 1,
"jsonrpc": "2.0",
"method": "eth_maxPriorityFeePerGas",
"params": []
}'
{
"jsonrpc": "<string>",
"id": 123,
"result": "<string>"
}
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.
result
: The current maximum priority fee per gas, returned as a hexadecimal number.Current max priority fee per gas in wei
The response is of type object
.
Was this page helpful?