[Ethereum] Symbolic decoding of a transaction for Solidity

contract-debuggingraw-transactionsolidity

I have a Solidity contract source code and a raw transaction (hex) from blockchain. Is it possible for me to decode the transaction to its symbolic format, so I can see what contract methods are called and with which arguments?

Best Answer

Check out http://ethslurp.com. It does exactly that. Here's all ~135,000 DAO transactions decoded (and separated by day and function call) as ASCII text files: http://daodeepdive.com/data.html.

Related Topic