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