Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: Improve Grammar and Clarity in verify-smart-contract.mdx #310

Merged
merged 2 commits into from
Jan 8, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/pages/build/tutorials/verify-smart-contract.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Verification is available for both Solidity and Vyper contracts. **Currently, th

![Blockscout verification 1](../../../images/blockscout_verif_1_ink.png)

2) Enter in the contract address you received during deployment. The dropdown will show you several available verification options. Select the one you would like to use and continue.
2) Enter the contract address you received during deployment. The dropdown will show you several available verification options. Select the one you would like to use and continue.

![Blockscout verification 2](../../../images/blockscout_verif_2_ink.png)

Expand Down Expand Up @@ -78,7 +78,7 @@ More information on JSON input is available [here](https://docs.soliditylang.org

2. **Compiler**. Choose the compiler version used to compile your smart contract. If you selected yes for nightly builds, use the compiler version rather than the build.

3. **Standard Input JSON**. Upload your Standard Input JSON file. File should follows solidity [format](https://docs.soliditylang.org/en/latest/using-the-compiler.html#input-description) and all the sources must be in Literal Content format, not a URL.
3. **Standard Input JSON**. Upload your Standard Input JSON file. File should follow the Solidity [format](https://docs.soliditylang.org/en/latest/using-the-compiler.html#input-description) and all the sources must be in Literal Content format, not a URL.

Click the `Verify & publish` button and wait for the response.

Expand All @@ -105,7 +105,7 @@ If all goes well, you will see a checkmark ✅ next to Code in the code tab, and
See the information above.

### Troubleshooting
If you receive the dreaded `There was an error compiling your contract` message this means the bytecode doesn't match the supplied sourcecode. Unfortunately, there are many reasons this may be the case. Here are a few things to try:
If you receive the dreaded `There was an error compiling your contract` message this means the bytecode doesn't match the supplied source code. Unfortunately, there are many reasons this may be the case. Here are a few things to try:

1) Double check the compiler version is correct.

Expand Down
Loading