Parameters
array— array of transaction call objects with trace typesquantity or tag— the block number in hex format or block tag (latest,earliest,pending,safe,finalized)
Response
array— an array of trace results
array — array of transaction call objects with trace typesquantity or tag — the block number in hex format or block tag (latest, earliest, pending, safe, finalized)array — an array of trace resultstrace_callMany code examplesconst { JsonRpcProvider } = require("ethers");
const provider = new JsonRpcProvider("CHAINSTACK_NODE_URL");
async function call() {
const result = await provider.send("trace_callMany", []);
console.log(result);
}
call();
Was this page helpful?