Questions tagged [transaction-trace]
The transaction-trace tag has no summary.
49 questions
1 vote
0 answers
34 views
Among all the recent execution trace, how do I search for all contracts that executed a specific instruction sequence?
Simple question : I want to query all contracts having used a specific opcode among the recent blocks. Is there a simple way to do this or do I have to use an Ethereum node in order to inspect all the ...
0 votes
1 answer
96 views
Unknown transaction in my wallet
I never sent any ETH to anyone, but there's an unknown transaction in my wallet. Is it possible to trace it and get my money back or at least to know who operated this transaction? This is the ...
0 votes
1 answer
375 views
how can we decode transaction data using rust?
As we all know, we can decode transaction data when a known method is called like this. [...] fn main() { let input = "...
1 vote
1 answer
84 views
"DELEGATECALL" with value
How is it possible that "DELEGATECALL" with a non-zero value? Example: https://sepolia.etherscan.io/tx/0xd697d2db1494197496a8e6312c8295131a1df66bdeafd29be85361f2318832ad/advanced#internal ...
0 votes
1 answer
58 views
I get blackmailed by a person from which I have only the Etherium wallet adress [duplicate]
I need help to identify a person that is blackmailing with what she thinks is compromising material, to send it to family, colleagues, etc etc, if I do not pay 300 € (as a start) to settle the issue. ...
1 vote
0 answers
165 views
debug_traceBlockByHash regenerates historical state and increases memory usage
Question. I often get logs like the following. I assume this is being called from outside, but why is it being called? Also, is the error because my node does not have historical state up to (latest ...
1 vote
3 answers
2k views
How to track scammers through etherscan? [duplicate]
I just came across this video here: https://www.youtube.com/watch?v=Vhkb9G2SyVw Wich have this code in the description: https://pastebin.com/raw/U8FQewES It seems quite attractive at first, but the ...
0 votes
1 answer
255 views
How does the PUSH instruction get its input?
I'm trying to understand state storage, and by doing so (for the first time) looking at raw geth traces. I've hit a blocker, though, which is understanding where the arguments to PUSH instructions ...