githubEdit

eth_maxPriorityFeePerGas - Celo

Example code for the eth_maxPriorityFeePerGas JSON-RPC method. Complete guide on how to use eth_maxPriorityFeePerGas JSON-RPC in GetBlock Web3 documentation.

This method returns the current max priority fee per gas (tip) for EIP-1559 transactions on the Celo network. This is used to incentivize faster transaction inclusion.

Parameters

  • None

Request Example

cURL
curl -X POST https://go.getblock.io/<ACCESS-TOKEN>/ \
-H "Content-Type: application/json" \
-d '{
  "jsonrpc": "2.0",
  "id": "getblock.io",
  "method": "eth_maxPriorityFeePerGas",
  "params": []
}'

Response Example

response.json
{
  "jsonrpc": "2.0",
  "id": "getblock.io",
  "result": "0x3b9aca00"
}

Response Definition

Field
Type
Description

result

string

Max priority fee in wei as hexadecimal

Use Cases

  • Set EIP-1559 transaction priority fees

  • Optimize transaction inclusion speed

  • Calculate total gas costs

Error Handling

Error Code
Description

-32603

Internal error

-32601

Method not supported

SDK Integration

Last updated

Was this helpful?