0

I know the contract address. Unknown ABI . So how do I Decode that contract.. I use bytecode-decompiler in EtherScan but It only decodes Function unknow. enter image description here

So how to Decode the full code Contract .

example contract: https://etherscan.io/address/0x74de5d4fcbf63e00296fd95d33236b9794016631#code

ltt88
  • 23
  • 4

1 Answers1

0

Getting back to the exact source code of an unverified smart contract is, unfortunately, not possible.

Your best bet is to use a bytecode decompiler like the one you used (Etherscan's solution). As an alternative I can also recommend EtherVM:

https://ethervm.io/decompile

Paul Razvan Berg
  • 17,902
  • 6
  • 73
  • 143