Skip to content

Instantly share code, notes, and snippets.

@zlin888
Last active June 11, 2019 21:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zlin888/b6b8430474b88de485ab9f5e7e64d338 to your computer and use it in GitHub Desktop.
Save zlin888/b6b8430474b88de485ab9f5e7e64d338 to your computer and use it in GitHub Desktop.
why verification in etherscan

You can deploy it directly, no one is in charge of officially verifying contracts in the network. However, your users will be reassured of your seriousness if you share the actual code of your contract. To be sure that the code you posted as "your contract code" is the same as the actual contract in the network, you could verify it, this can be done using Etherscan code source verification. https://ethereum.stackexchange.com/questions/51998/smart-contract-verification

https://etherscan.io/verifyContract

https://blog.fundrequest.io/verifying-your-truffle-solidity-contracts-on-etherscan-87cb374e2adc

To sum up, the verification in etherscan is: etherscan translates the solidity code given by users to see whether the output bytecode is identifical to the bytecode that was put in the blockchain.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment