Replies: 1 comment
-
This cURL request to the local RPC endpoint might be what you're looking for: curl http://localhost:8545 -s -X POST -H "Content-Type: application/json" -d '
{"jsonrpc":"2.0","id":1, "method":"debug_traceTransaction", "params": ["0x1e3546b098620f7979555c4a21ad4a8ee5d4a6a2a36518177abba2a8a34a8f07"]}
' Replacing Anvil can be started with or without the With
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
When running a local anvil chain I'm able to see basic logs via stdout including block number, block hash, etc. Is there any best practice for me to see more details about the transaction when running anvil locally? Eg
I had trouble finding reference to this in their docs, I only found reference to functions like eth_getLogs in their RPC methods
Thank you!
Beta Was this translation helpful? Give feedback.
All reactions