debug_traceCall RPC Method
Parameters
object
object
Loading...
from
string
Loading...
to
string
REQUIRED
Loading...
gas
integer
Loading...
gasPrice
integer
Loading...
value
integer
Loading...
data
string
Loading...
blockReference
string
REQUIRED
Loading...
tracerOptions
object
REQUIRED
Loading...
tracer
string
Loading...
callTracer
string
Loading...
tracerConfig
object
Loading...
onlyTopCall
boolean
Loading...
Returns
result
object
Loading...
calls
Loading...
error
Loading...
from
Loading...
gas
Loading...
gasUsed
Loading...
input
Loading...
output
Loading...
revertReason
Loading...
to
Loading...
type
Loading...
value
Loading...
Request
1curl -X POST "https://docs-demo.zksync-mainnet.quiknode.pro/" \2-H "Content-Type: application/json" \3-d '{4"jsonrpc": "2.0",5"method": "debug_traceCall",6"params": [7{8"from": "0x1111111111111111111111111111111111111111",9"to": "0x2222222222222222222222222222222222222222",10"data": "0xffffffff"11},12"0x24b258",13{14"tracer": "callTracer"15}16],17"id": 118}'
1curl -X POST "https://docs-demo.zksync-mainnet.quiknode.pro/" \2-H "Content-Type: application/json" \3-d '{4"jsonrpc": "2.0",5"method": "debug_traceCall",6"params": [7{8"from": "0x1111111111111111111111111111111111111111",9"to": "0x2222222222222222222222222222222222222222",10"data": "0xffffffff"11},12"0x24b258",13{14"tracer": "callTracer"15}16],17"id": 118}'
1import { ethers } from "ethers";23async function main() {4const provider = new ethers.JsonRpcProvider("https://docs-demo.zksync-mainnet.quiknode.pro/");5const response = await provider.send("debug_traceCall", [6{7"from": "0x1111111111111111111111111111111111111111",8"to": "0x2222222222222222222222222222222222222222",9"data": "0xffffffff"10},11"0x24b258",12{13"tracer": "callTracer"14}15]);16console.log(response);17}1819main();
1import { ethers } from "ethers";23async function main() {4const provider = new ethers.JsonRpcProvider("https://docs-demo.zksync-mainnet.quiknode.pro/");5const response = await provider.send("debug_traceCall", [6{7"from": "0x1111111111111111111111111111111111111111",8"to": "0x2222222222222222222222222222222222222222",9"data": "0xffffffff"10},11"0x24b258",12{13"tracer": "callTracer"14}15]);16console.log(response);17}1819main();
1require 'eth'23client = Eth::Client.create 'https://docs-demo.zksync-mainnet.quiknode.pro/'4payload = {5"jsonrpc": "2.0",6"method": "debug_traceCall",7"params": [8{9"from": "0x1111111111111111111111111111111111111111",10"to": "0x2222222222222222222222222222222222222222",11"data": "0xffffffff"12},13"0x24b258",14{15"tracer": "callTracer"16}17],18"id": "1"19}2021response = client.send(payload.to_json)22puts response
1require 'eth'23client = Eth::Client.create 'https://docs-demo.zksync-mainnet.quiknode.pro/'4payload = {5"jsonrpc": "2.0",6"method": "debug_traceCall",7"params": [8{9"from": "0x1111111111111111111111111111111111111111",10"to": "0x2222222222222222222222222222222222222222",11"data": "0xffffffff"12},13"0x24b258",14{15"tracer": "callTracer"16}17],18"id": "1"19}2021response = client.send(payload.to_json)22puts response
1from web3 import Web3, HTTPProvider2w3 = Web3(HTTPProvider('https://docs-demo.zksync-mainnet.quiknode.pro/'))3response = w3.provider.make_request("debug_traceCall", [{"from":"0x1111111111111111111111111111111111111111","to":"0x2222222222222222222222222222222222222222","data":"0xffffffff"},"0x24b258",{"tracer":"callTracer"}])4print(response)
1from web3 import Web3, HTTPProvider2w3 = Web3(HTTPProvider('https://docs-demo.zksync-mainnet.quiknode.pro/'))3response = w3.provider.make_request("debug_traceCall", [{"from":"0x1111111111111111111111111111111111111111","to":"0x2222222222222222222222222222222222222222","data":"0xffffffff"},"0x24b258",{"tracer":"callTracer"}])4print(response)
1import { createPublicClient, http } from 'viem'23async function main() {4const client = createPublicClient({5transport: http('https://docs-demo.zksync-mainnet.quiknode.pro/')6})78const result = await client.request({9method: 'debug_traceCall',10params: [11{12"from": "0x1111111111111111111111111111111111111111",13"to": "0x2222222222222222222222222222222222222222",14"data": "0xffffffff"15},16"0x24b258",17{18"tracer": "callTracer"19}20]21})2223console.log(result)24}2526main()
1import { createPublicClient, http } from 'viem'23async function main() {4const client = createPublicClient({5transport: http('https://docs-demo.zksync-mainnet.quiknode.pro/')6})78const result = await client.request({9method: 'debug_traceCall',10params: [11{12"from": "0x1111111111111111111111111111111111111111",13"to": "0x2222222222222222222222222222222222222222",14"data": "0xffffffff"15},16"0x24b258",17{18"tracer": "callTracer"19}20]21})2223console.log(result)24}2526main()
1import { Core } from '@quicknode/sdk'23const core = new Core({4endpointUrl: "https://docs-demo.zksync-mainnet.quiknode.pro/",5})67core.client8.request({9method: 'debug_traceCall',10params: [{"from":"0x1111111111111111111111111111111111111111","to":"0x2222222222222222222222222222222222222222","data":"0xffffffff"},"0x24b258",{"tracer":"callTracer"}]11})12.then(res => console.log(res))
1import { Core } from '@quicknode/sdk'23const core = new Core({4endpointUrl: "https://docs-demo.zksync-mainnet.quiknode.pro/",5})67core.client8.request({9method: 'debug_traceCall',10params: [{"from":"0x1111111111111111111111111111111111111111","to":"0x2222222222222222222222222222222222222222","data":"0xffffffff"},"0x24b258",{"tracer":"callTracer"}]11})12.then(res => console.log(res))
1const body = {2jsonrpc: '2.0',3method: 'debug_traceCall',4params: [{"from":"0x1111111111111111111111111111111111111111","to":"0x2222222222222222222222222222222222222222","data":"0xffffffff"},"0x24b258",{"tracer":"callTracer"}],5id: 16}78async function main() {9const response = await fetch('https://docs-demo.zksync-mainnet.quiknode.pro/', {10method: 'POST',11headers: {'Content-Type': 'application/json'},12body: JSON.stringify(body)13})14const data = await response.json()15console.log(data)16}1718main()
1const body = {2jsonrpc: '2.0',3method: 'debug_traceCall',4params: [{"from":"0x1111111111111111111111111111111111111111","to":"0x2222222222222222222222222222222222222222","data":"0xffffffff"},"0x24b258",{"tracer":"callTracer"}],5id: 16}78async function main() {9const response = await fetch('https://docs-demo.zksync-mainnet.quiknode.pro/', {10method: 'POST',11headers: {'Content-Type': 'application/json'},12body: JSON.stringify(body)13})14const data = await response.json()15console.log(data)16}1718main()
1import requests2import json34url = "https://docs-demo.zksync-mainnet.quiknode.pro/"56payload = json.dumps({7"jsonrpc": "2.0",8"method": "debug_traceCall",9"params": [10{11"from": "0x1111111111111111111111111111111111111111",12"to": "0x2222222222222222222222222222222222222222",13"data": "0xffffffff"14},15"0x24b258",16{17"tracer": "callTracer"18}19],20"id": 121})22headers = {23'Content-Type': 'application/json'24}2526response = requests.request("POST", url, headers=headers, data=payload)2728print(response.text)
1import requests2import json34url = "https://docs-demo.zksync-mainnet.quiknode.pro/"56payload = json.dumps({7"jsonrpc": "2.0",8"method": "debug_traceCall",9"params": [10{11"from": "0x1111111111111111111111111111111111111111",12"to": "0x2222222222222222222222222222222222222222",13"data": "0xffffffff"14},15"0x24b258",16{17"tracer": "callTracer"18}19],20"id": 121})22headers = {23'Content-Type': 'application/json'24}2526response = requests.request("POST", url, headers=headers, data=payload)2728print(response.text)
1require "uri"2require "json"3require "net/http"45uri = URI("https://docs-demo.zksync-mainnet.quiknode.pro/")67payload = {8jsonrpc: "2.0",9id: 1,10method: "debug_traceCall",11params: [{"from":"0x1111111111111111111111111111111111111111","to":"0x2222222222222222222222222222222222222222","data":"0xffffffff"},"0x24b258",{"tracer":"callTracer"}]12}1314request = Net::HTTP::Post.new(uri)15request["Content-Type"] = "application/json"16request.body = JSON.generate(payload)1718response = Net::HTTP.start(uri.host, uri.port, use_ssl: true) do |http|19http.request(request)20end2122puts response.body
1require "uri"2require "json"3require "net/http"45uri = URI("https://docs-demo.zksync-mainnet.quiknode.pro/")67payload = {8jsonrpc: "2.0",9id: 1,10method: "debug_traceCall",11params: [{"from":"0x1111111111111111111111111111111111111111","to":"0x2222222222222222222222222222222222222222","data":"0xffffffff"},"0x24b258",{"tracer":"callTracer"}]12}1314request = Net::HTTP::Post.new(uri)15request["Content-Type"] = "application/json"16request.body = JSON.generate(payload)1718response = Net::HTTP.start(uri.host, uri.port, use_ssl: true) do |http|19http.request(request)20end2122puts response.body
Response
1{2"jsonrpc": "2.0",3"id": 1,4"result": {5"calls": "0x0",6"error": "0x0",7"from": "0x0",8"gas": "0x0",9"gasUsed": "0x0",10"input": "0x0",11"output": "0x0",12"revertReason": "0x0",13"to": "0x0",14"type": "0x0",15"value": "0x0"16}17}
1{2"jsonrpc": "2.0",3"id": 1,4"result": {5"calls": "0x0",6"error": "0x0",7"from": "0x0",8"gas": "0x0",9"gasUsed": "0x0",10"input": "0x0",11"output": "0x0",12"revertReason": "0x0",13"to": "0x0",14"type": "0x0",15"value": "0x0"16}17}
Don't have an account yet?
Create your Quicknode endpoint in seconds and start building
Get started for free