Skip to main content

Documentation Index

Fetch the complete documentation index at: https://goldrush.dev/docs/llms.txt

Use this file to discover all available pages before exploring further.

0.015 credits per call

trace_callMany on HyperEVM: Returns Parity-style traces for a sequence of calls executed on top of the same block.
trace_callMany requires archive depth. See the debug & trace matrix for HyperEVM archive coverage.

Endpoint

https://rpc.goldrushdata.com/v1/hyperevm-mainnet
Authenticate with Authorization: Bearer <YOUR_GOLDRUSH_API_KEY>. See authentication.

Parameters

NameTypeRequiredDescriptionExample
callsArray<[Object, Array<String>]>yesArray of [callObject, traceTypes] tuples. Each callObject has the same shape as eth_call; each traceTypes is one or more of trace, vmTrace, stateDiff.[[{"to":"0xa0b86991...","data":"0x70a08231..."},["trace"]],[{"to":"0xa0b86991...","data":"0xa9059cbb..."},["trace","stateDiff"]]]
blockTagQUANTITY | TAGnoBlock number (hex) or block tag the simulation runs on top of. Defaults to latest."latest"

Returns

Array<Object>: Array of trace result objects, one per input call, each shaped like a trace_call result ({output, trace[], stateDiff?, vmTrace?}).
[{"output":"0x","trace":[{"action":{"from":"0x..."}}]},{"output":"0x0000...0001","trace":[{"action":{"from":"0x..."}}],"stateDiff":{}}]

Examples

curl https://rpc.goldrushdata.com/v1/hyperevm-mainnet \
  -H "Authorization: Bearer $GOLDRUSH_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "trace_callMany",
    "params": [[[{"to":"0xa0b86991...","data":"0x70a08231..."},["trace"]],[{"to":"0xa0b86991...","data":"0xa9059cbb..."},["trace","stateDiff"]]], "latest"]
  }'

Errors

Standard JSON-RPC errors: -32600 invalid request, -32601 method not found, -32602 invalid params.

Also available on