trace_transaction RPC Method
This RPC method is included in the Free Trial with limited usage. Upgrade your plan to get full access and higher limits. Learn more onĀ our pricing page.
Parameters
hash
string
REQUIRED
Loading...
Returns
array
array
Loading...
action
object
Loading...
from
string
Loading...
callType
string
Loading...
gas
string
Loading...
input
string
Loading...
to
string
Loading...
value
string
Loading...
blockHash
string
Loading...
blockNumber
integer
Loading...
result
object
Loading...
gasUsed
string
Loading...
output
string
Loading...
subtraces
integer
Loading...
traceAddress
array
Loading...
transactionHash
string
Loading...
transactionPosition
integer
Loading...
type
string
Loading...
Request
1curl -X POST "https://docs-demo.tempo-mainnet.quiknode.pro/" \2-H "Content-Type: application/json" \3-d '{4"jsonrpc": "2.0",5"method": "trace_transaction",6"params": [7"0xef2b1a722b984401275068f2bf8388a8242e645ce706cb011bd039e571dc18cc"8],9"id": 110}'
1curl -X POST "https://docs-demo.tempo-mainnet.quiknode.pro/" \2-H "Content-Type: application/json" \3-d '{4"jsonrpc": "2.0",5"method": "trace_transaction",6"params": [7"0xef2b1a722b984401275068f2bf8388a8242e645ce706cb011bd039e571dc18cc"8],9"id": 110}'
1import { ethers } from "ethers";23async function main() {4const provider = new ethers.JsonRpcProvider("https://docs-demo.tempo-mainnet.quiknode.pro/");5const response = await provider.send("trace_transaction", [6"0xef2b1a722b984401275068f2bf8388a8242e645ce706cb011bd039e571dc18cc"7]);8console.log(response);9}1011main();
1import { ethers } from "ethers";23async function main() {4const provider = new ethers.JsonRpcProvider("https://docs-demo.tempo-mainnet.quiknode.pro/");5const response = await provider.send("trace_transaction", [6"0xef2b1a722b984401275068f2bf8388a8242e645ce706cb011bd039e571dc18cc"7]);8console.log(response);9}1011main();
1from web3 import Web3, HTTPProvider2w3 = Web3(HTTPProvider('https://docs-demo.tempo-mainnet.quiknode.pro/'))3response = w3.provider.make_request("trace_transaction", ["0xef2b1a722b984401275068f2bf8388a8242e645ce706cb011bd039e571dc18cc"])4print(response)
1from web3 import Web3, HTTPProvider2w3 = Web3(HTTPProvider('https://docs-demo.tempo-mainnet.quiknode.pro/'))3response = w3.provider.make_request("trace_transaction", ["0xef2b1a722b984401275068f2bf8388a8242e645ce706cb011bd039e571dc18cc"])4print(response)
1import { createPublicClient, http } from 'viem'23async function main() {4const client = createPublicClient({5transport: http('https://docs-demo.tempo-mainnet.quiknode.pro/')6})78const result = await client.request({9method: 'trace_transaction',10params: [11"0xef2b1a722b984401275068f2bf8388a8242e645ce706cb011bd039e571dc18cc"12]13})1415console.log(result)16}1718main()
1import { createPublicClient, http } from 'viem'23async function main() {4const client = createPublicClient({5transport: http('https://docs-demo.tempo-mainnet.quiknode.pro/')6})78const result = await client.request({9method: 'trace_transaction',10params: [11"0xef2b1a722b984401275068f2bf8388a8242e645ce706cb011bd039e571dc18cc"12]13})1415console.log(result)16}1718main()
1import { Core } from '@quicknode/sdk'23const core = new Core({4endpointUrl: "https://docs-demo.tempo-mainnet.quiknode.pro/",5})67core.client8.request({9method: 'trace_transaction',10params: ["0xef2b1a722b984401275068f2bf8388a8242e645ce706cb011bd039e571dc18cc"]11})12.then(res => console.log(res))
1import { Core } from '@quicknode/sdk'23const core = new Core({4endpointUrl: "https://docs-demo.tempo-mainnet.quiknode.pro/",5})67core.client8.request({9method: 'trace_transaction',10params: ["0xef2b1a722b984401275068f2bf8388a8242e645ce706cb011bd039e571dc18cc"]11})12.then(res => console.log(res))
1const body = {2jsonrpc: '2.0',3method: 'trace_transaction',4params: ["0xef2b1a722b984401275068f2bf8388a8242e645ce706cb011bd039e571dc18cc"],5id: 16}78async function main() {9const response = await fetch('https://docs-demo.tempo-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: 'trace_transaction',4params: ["0xef2b1a722b984401275068f2bf8388a8242e645ce706cb011bd039e571dc18cc"],5id: 16}78async function main() {9const response = await fetch('https://docs-demo.tempo-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.tempo-mainnet.quiknode.pro/"56payload = json.dumps({7"jsonrpc": "2.0",8"method": "trace_transaction",9"params": [10"0xef2b1a722b984401275068f2bf8388a8242e645ce706cb011bd039e571dc18cc"11],12"id": 113})14headers = {15'Content-Type': 'application/json'16}1718response = requests.request("POST", url, headers=headers, data=payload)1920print(response.text)
1import requests2import json34url = "https://docs-demo.tempo-mainnet.quiknode.pro/"56payload = json.dumps({7"jsonrpc": "2.0",8"method": "trace_transaction",9"params": [10"0xef2b1a722b984401275068f2bf8388a8242e645ce706cb011bd039e571dc18cc"11],12"id": 113})14headers = {15'Content-Type': 'application/json'16}1718response = requests.request("POST", url, headers=headers, data=payload)1920print(response.text)
1require "uri"2require "json"3require "net/http"45uri = URI("https://docs-demo.tempo-mainnet.quiknode.pro/")67payload = {8jsonrpc: "2.0",9id: 1,10method: "trace_transaction",11params: ["0xef2b1a722b984401275068f2bf8388a8242e645ce706cb011bd039e571dc18cc"]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.tempo-mainnet.quiknode.pro/")67payload = {8jsonrpc: "2.0",9id: 1,10method: "trace_transaction",11params: ["0xef2b1a722b984401275068f2bf8388a8242e645ce706cb011bd039e571dc18cc"]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": null5}
1{2"jsonrpc": "2.0",3"id": 1,4"result": null5}
Don't have an account yet?
Create your Quicknode endpoint in seconds and start building
Get started for free