eth_maxPriorityFeePerGas
Returns current max_priority_fee
- CURL
curl --request POST \
     --url https://evm.confluxrpc.com \
     --header 'accept: application/json' \
     --header 'content-type: application/json' \
     --data '
{
  "id": 1,
  "jsonrpc": "2.0",
  "params": [],
  "method": "eth_maxPriorityFeePerGas"
}'
Result
Schema
type : string
Pattern : 
^0x([1-9a-f][0-9a-f]{0,63}|0)$Example
- eth_maxPriorityFeePerGas
Request
curl -X POST --data \
'{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "eth_maxPriorityFeePerGas",
    "params": []
}' \
-H "Content-Type: application/json" \
localhost:12539
Response
"0x1"