Skip to content

Commit

Permalink
insert your name
Browse files Browse the repository at this point in the history
  • Loading branch information
themacexpert committed Apr 18, 2024
1 parent 6864789 commit eef0a71
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
@@ -1,5 +1,5 @@
<div id="termynal" data-termynal>
<span data-ty="input"><span class="file-path"></span> npx hardhat ignition verify YOUR-NAME-HERE</span>
<span data-ty="input"><span class="file-path"></span> npx hardhat ignition verify INSERT_YOUR_NAME</span>
<br>
<span data-ty>Nothing to compile</span>
<span data-ty>Successfully submitted source code for contract
Expand Down
@@ -1,5 +1,5 @@
<div id="termynal" data-termynal>
<span data-ty="input"><span class="file-path"></span> npx hardhat ignition verify YOUR-NAME-HERE</span>
<span data-ty="input"><span class="file-path"></span> npx hardhat ignition verify INSERT_YOUR_NAME</span>
<br>
<span data-ty>Nothing to compile</span>
<span data-ty>Successfully submitted source code for contract
Expand Down
10 changes: 5 additions & 5 deletions tutorials/eth-api/hardhat-start-to-end.md
Expand Up @@ -480,10 +480,10 @@ While it's possible to verify smart contracts on the [Moonscan website](https://
Before beginning the contract verification process, you'll need to [acquire a Moonscan API Key](/builders/build/eth-api/verify-contracts/etherscan-plugins/#generating-a-moonscan-api-key){target=\_blank}. Note that Moonbeam and Moonbase Alpha use the same [Moonbeam Moonscan](https://moonscan.io/){target=\_blank} API key, whereas you'll need a distinct API key for [Moonriver](https://moonriver.moonscan.io/){target=\_blank}.
To verify the contract, you will run the `ignition verify` command and pass the deployment-id, the `YOUR-NAME-HERE` parameter in the prior step.
To verify the contract, you will run the `ignition verify` command and pass the deployment-id, the `INSERT_YOUR_NAME` parameter in the prior step.
```bash
npx hardhat ignition verify YOUR-NAME-HERE
npx hardhat ignition verify INSERT_YOUR_NAME
```
!!! note
Expand Down Expand Up @@ -528,7 +528,7 @@ module.exports = buildModule("DelegationDAOModule", (m) => {
To run the script and deploy the `DelegationDAO.sol` contract, use the following command, which requires you to specify the network name as defined in your `hardhat.config.js`. If you don't specify a network, Hardhat will deploy the contract to a local Hardhat network by default.
```sh
npx hardhat ignition deploy ./ignition/modules/DelegationDao.js --network moonbeam --deployment-id YOUR-NAME-HERE
npx hardhat ignition deploy ./ignition/modules/DelegationDao.js --network moonbeam --deployment-id INSERT_YOUR_NAME
```
You'll be prompted to confirm the network you wish to deploy to. After a few seconds after you confirm, the contract is deployed, and you'll see the contract address in the terminal.
Expand All @@ -541,10 +541,10 @@ Congratulations, your contract is live on Moonbeam! Save the address, as you wil
In this section, we'll be verifying the contract that was just deployed on Moonbeam. Before beginning the contract verification process, you'll need to [acquire a Moonscan API Key](/builders/build/eth-api/verify-contracts/etherscan-plugins/#generating-a-moonscan-api-key){target=\_blank}. Note that Moonbeam and Moonbase Alpha use the same [Moonbeam Moonscan](https://moonscan.io/){target=\_blank} API key, whereas you'll need a distinct API key for [Moonriver](https://moonriver.moonscan.io/){target=\_blank}.
To verify the contract, you will run the `ignition verify` command and pass the deployment-id, the `YOUR-NAME-HERE` parameter in the prior step.
To verify the contract, you will run the `ignition verify` command and pass the deployment-id, the `INSERT_YOUR_NAME` parameter in the prior step.
```bash
npx hardhat ignition verify YOUR-NAME-HERE
npx hardhat ignition verify INSERT_YOUR_NAME
```
!!! note
Expand Down

0 comments on commit eef0a71

Please sign in to comment.