Skip to main content

debug_traceCall RPC Method

Let's you run eth_call on top of a block (Trace Mode required).

Updated on
Jan 03, 2025

debug_traceCall RPC Method

Parameters

object
array
The transaction call object with the following fields:
from
string
The initiating Ethereum address for the transfer, which will be null if not applicable
to
string
The address the transaction is directed to, which will be null if not applicable
gas
integer
The integer of the gas provided for the transaction execution
gasPrice
integer
The integer of the gasPrice used for each paid gas
value
integer
The integer of the value sent with this transaction
data
string
The hash of the method signature and encoded parameters
blockReference
string
REQUIRED
The block number in hexadecimal format, the block hash, or tags. The supported tag values include earliest for the earliest/genesis block, latest for the latest mined block, pending for the pending state/transactions, safe for the most recent secure block, and finalized for the most recent secure block accepted by more than 2/3 of validators
object
object
REQUIRED
The tracer object with the following fields:
tracer
string
The type of tracer. It could be callTracer or prestateTracer
tracerConfig
object
The object to specify the configurations of the tracer
onlyTopCall
boolean
When set to true, this will only trace the primary (top-level) call and not any sub-calls. It eliminates the additional processing for each call frame

Returns

result
object
An object containing detailed information about the traced transaction
type
string
The type of transaction, e.g., 'CALL'
from
string
The address initiating the transaction
to
string
The address receiving the transaction
gas
string
The gas provided for the transaction in hexadecimal
gasUsed
string
The gas used during transaction execution in hexadecimal
value
string
The value transferred in the transaction in hexadecimal
output
string
The transaction output data in hexadecimal
input
string
The transaction input data in hexadecimal
Request
1
curl https://docs-demo.flare-mainnet.quiknode.pro/ext/bc/C/rpc \
2
-X POST \
3
-H "Content-Type: application/json" \
4
--data '{"method":"debug_traceCall","params":[{"from":null,"to":"0x6b175474e89094c44da98b954eedeac495271d0f","data":"0x70a082310000000000000000000000006E0d01A76C3Cf4288372a29124A26D4353EE51BE"}, "latest",{"tracer": "callTracer"}],"id":1,"jsonrpc":"2.0"}'
Don't have an account yet?
Create your QuickNode endpoint in seconds and start building
Get started for free