Home > Back-end >  How can I convert EVM byte code to assembly language?
How can I convert EVM byte code to assembly language?

Time:06-13

Is there a tool available for converting the EVM or solidity byte code to solidity assembly language?

CodePudding user response:

You can deploy it on test network (for example Ropsten) and decompile it using ethervm tool and see decompiled assembly at the end of the page (Disassembly section)

It's also usable, if you have contract address on test or live network.

  • Related