Hi,
I have this code:
const provider = new ethers.providers.JsonRpcProvider(moralisBscSpeedyNodeUrl);
const trace = await provider.send("debug_traceTransaction", txHash);
console.log(trace);
And this gives me this error:
Error: processing response error (body="{\"jsonrpc\":\"2.0\",\"id\":42,\"error\":{\"code\":-32601,\"message\":\"the method debug_traceTransaction does not exist/is not available\"}}\n", error={"code":-32601}, requestBody="{\"method\":\"debug_traceTransaction\",\"params\":[\"0x5a5a01a053998f352cb7fe8d2b7ed4ea1a4fce7f7c831677d0f0ca3d8b0d55ef\"],\"id\":42,\"jsonrpc\":\"2.0\"}", requestMethod="POST", url="https://speedy-nodes-nyc.moralis.io/f488460c8148b37d4654fee2/bsc/mainnet/archive", code=SERVER_ERROR, version=web/5.3.0)
It seems Moralis doesn’t support debug_traceTransaction
. Do you plan to support it?
Thank you for making Moralis!