AptosAptos Network's breakthrough technology and seamless user experience are now available on QuickNode.
Start building today!The eth_max_priority_fee_per_gas EVM method is only supported on the Avalanche C-Chain.
Parameters:
Returns:
Code Examples:
To use the eth_max_priority_fee_per_gas EVM method on the Avalanche C-Chain, ensure that the end of your URL includes ext/bc/C/rpc.
curl --location --request POST http://sample-endpoint-name.network.quiknode.pro/token-goes-here/ext/bc/C/rpc \ --header 'Content-Type: application/json' \ --data-raw '{ "jsonrpc": "2.0", "method": "eth_maxPriorityFeePerGas", "params": [], "id": 1 }'
from web3 import Web3, HTTPProvider w3 = Web3(HTTPProvider('http://sample-endpoint-name.network.quiknode.pro/token-goes-here/ext/bc/X')) params = [] request = w3.provider.make_request('eth_maxPriorityFeePerGas', params) print(request)
const ethers = require("ethers"); (async () => { const provider = new ethers.providers.JsonRpcProvider( "http://sample-endpoint-name.network.quiknode.pro/token-goes-here/ext/bc/C/rpc" ); const params = []; const result = await provider.send("eth_maxPriorityFeePerGas", params); console.log(result); })();