← BNB Smart Chain overview
BNB Smart Chain · eth
eth_maxPriorityFeePerGas
Returns the current maxPriorityFeePerGas per gas in wei.
Result
Max priority fee per gas
Schema
{
"type": "string",
"title": "Max priority fee per gas",
"pattern": "^0x(0|[1-9a-f][0-9a-f]*)$"
}Example request
Endpoint: https://your-bsc-node.azxa.io
JSON-RPC
{
"jsonrpc": "2.0",
"id": 1,
"method": "eth_maxPriorityFeePerGas",
"params": []
}Example response
{
"jsonrpc": "2.0",
"id": 1,
"result": "0x773c23ba"
}cURL
curl -X POST https://your-bsc-node.azxa.io \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"eth_maxPriorityFeePerGas","params":[]}'