Skip to content
View Mr-Gang's full-sized avatar

Highlights

  • Pro

Block or report Mr-Gang

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Sample Solidity Json Input for Ethe... Sample Solidity Json Input for Etherscan Verification
    1
    {
    2
        "language": "Solidity",
    3
        "sources": {
    4
          "contracts/Verified.sol": {
    5
            "content": "//SPDX-License-Identifier: MIT\r\npragma solidity ^0.8.18;\r\n\r\ncontract Verified {\r\n    string public greet =\r\n        \"Increase this counter if you completed this tutorial\";\r\n    string public tutorial =\r\n        \"https://docs.etherscan.io/contract-verification/multichain-verification\";\r\n\r\n    uint256 public verified = 0;\r\n\r\n    function completedTutorial() public {\r\n        verified += 1;\r\n    }\r\n}\r\n"