From 6864789e61726d5f7492c850d46fb66e110160b7 Mon Sep 17 00:00:00 2001 From: Kevin Neilson Date: Thu, 18 Apr 2024 09:55:38 -0700 Subject: [PATCH] Update tutorials/eth-api/hardhat-start-to-end.md Co-authored-by: Erin Shaben --- tutorials/eth-api/hardhat-start-to-end.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/eth-api/hardhat-start-to-end.md b/tutorials/eth-api/hardhat-start-to-end.md index 7e1ae252c..d6e6bf49d 100644 --- a/tutorials/eth-api/hardhat-start-to-end.md +++ b/tutorials/eth-api/hardhat-start-to-end.md @@ -463,7 +463,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 moonbase --deployment-id YOUR-NAME-HERE +npx hardhat ignition deploy ./ignition/modules/DelegationDao.js --network moonbase --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.