eth_maxPriorityFeePerGas - BSC

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

This method returns the current max priority fee per gas for EIP-1559 transactions. Note that BSC uses legacy gas pricing, so this may return 0 or not be fully implemented.

circle-info

BSC uses legacy gas pricing. This method may return 0 or not be fully implemented on BSC.

Parameters

  • none

Request Example

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

Response Example

{
    "jsonrpc": "2.0",
    "id": "getblock.io",
    "result": "0x0"
}

Response Parameters

Parameter
Type
Description

result

string

Priority fee (often 0x0 on BSC)

Use Cases

  • EIP-1559 compatibility checks

  • Cross-chain fee estimation

Error Handling

Error Code
Description

-32601

Method not supported

-32603

Internal error

SDK Integration

Last updated

Was this helpful?