diff options
author | chriseth <chris@ethereum.org> | 2018-07-20 19:44:12 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-20 19:44:12 +0800 |
commit | 9697b5886eac6b4473edd2b883002a2c1242486b (patch) | |
tree | e5240337e3cf55e85ba0554b78579a1dd66bee92 /docs/frequently-asked-questions.rst | |
parent | d3000e70b2ebe50043fd4c6e12b8cd29b5b75d8b (diff) | |
parent | 1aff0407998e8e1a28fa7916257defb17e5360aa (diff) | |
download | dexon-solidity-9697b5886eac6b4473edd2b883002a2c1242486b.tar dexon-solidity-9697b5886eac6b4473edd2b883002a2c1242486b.tar.gz dexon-solidity-9697b5886eac6b4473edd2b883002a2c1242486b.tar.bz2 dexon-solidity-9697b5886eac6b4473edd2b883002a2c1242486b.tar.lz dexon-solidity-9697b5886eac6b4473edd2b883002a2c1242486b.tar.xz dexon-solidity-9697b5886eac6b4473edd2b883002a2c1242486b.tar.zst dexon-solidity-9697b5886eac6b4473edd2b883002a2c1242486b.zip |
Merge pull request #4520 from ethereum/faq-reorg-index-tools
Move note on decompiling
Diffstat (limited to 'docs/frequently-asked-questions.rst')
-rw-r--r-- | docs/frequently-asked-questions.rst | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/docs/frequently-asked-questions.rst b/docs/frequently-asked-questions.rst index 0b68d4fb..cb46dea6 100644 --- a/docs/frequently-asked-questions.rst +++ b/docs/frequently-asked-questions.rst @@ -25,21 +25,6 @@ What is the transaction "payload"? This is just the bytecode "data" sent along with the request. -Is there a decompiler available? -================================ - -There is no exact decompiler to Solidity, but -`Porosity <https://github.com/comaeio/porosity>`_ is close. -Because some information like variable names, comments, and -source code formatting is lost in the compilation process, -it is not possible to completely recover the original source code. - -Bytecode can be disassembled to opcodes, a service that is provided by -several blockchain explorers. - -Contracts on the blockchain should have their original source -code published if they are to be used by third parties. - Create a contract that can be killed and return funds ===================================================== |