eth_maxPriorityFeePerGas

Returns a fee per gas that is an estimate of how much you can pay as a priority fee, or "tip", to get a transaction included in the current block.

Parameters:

None

Returns:

QUANTITY - the estimated priority fee per gas.

Example:

// Request
curl https://gnosis.blockpi.network/v1/rpc/your-rpc-key -X POST -H "Content-Type: application/json" --data '{"jsonrpc":"2.0","method":"eth_maxPriorityFeePerGas","params":[],"id":1}'

// Result
{
    "jsonrpc": "2.0",
    "result": "0xb2d05df9",
    "id": 1
}

Last updated