Parameters
data— the hash of the transactionarray— array of trace indices
Response
object— the trace object
data — the hash of the transactionarray — array of trace indicesobject — the trace objecttrace_get code examplesconst { JsonRpcProvider } = require("ethers");
const provider = new JsonRpcProvider("CHAINSTACK_NODE_URL");
async function call() {
const result = await provider.send("trace_get", []);
console.log(result);
}
call();
Was this page helpful?