Parameters
NoneResponse
quantity— the current max priority fee per gas in Wei
quantity — the current max priority fee per gas in Weieth_maxPriorityFeePerGas code examplesconst { JsonRpcProvider } = require("ethers");
const provider = new JsonRpcProvider("CHAINSTACK_NODE_URL");
async function call() {
const result = await provider.send("eth_maxPriorityFeePerGas", []);
console.log(result);
}
call();
Was this page helpful?