traceCallResult = {
const resp = await d3.json(rpcTracingUrl, {
method: 'POST',
headers: {
Accept: 'application/json',
'Content-Type': 'application/json'
},
body: JSON.stringify({
jsonrpc: '2.0',
method: 'trace_call',
params: [
{
from: addresses.dsPause,
to: addresses.dsPauseProxy,
data: pauseProxyCalldata
},
["trace", "stateDiff"]
],
id: 1
})
});
return resp.result;
}