Skip to main content
Plasma API method that performs multiple call traces on top of the same block.

Parameters

  • array — array of transaction call objects with trace types
  • quantity or tag — the block number in hex format or block tag (latest, earliest, pending, safe, finalized)

Response

  • array — an array of trace results

trace_callMany code examples

const { JsonRpcProvider } = require("ethers");

const provider = new JsonRpcProvider("CHAINSTACK_NODE_URL");

async function call() {
  const result = await provider.send("trace_callMany", []);
  console.log(result);
}

call();