From 767f202b8464311617eaab1a01775646de50903a Mon Sep 17 00:00:00 2001 From: Patricio Palladino Date: Sun, 22 Oct 2023 19:31:27 +0000 Subject: [PATCH] Promote Hardhat Ignition in Hardhat's tutorial and getting started --- .../content/hardhat-runner/docs/getting-started/index.md | 6 ++++++ docs/src/content/tutorial/deploying-to-a-live-network.md | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/docs/src/content/hardhat-runner/docs/getting-started/index.md b/docs/src/content/hardhat-runner/docs/getting-started/index.md index d7748fdab5..998b9c40e4 100644 --- a/docs/src/content/hardhat-runner/docs/getting-started/index.md +++ b/docs/src/content/hardhat-runner/docs/getting-started/index.md @@ -238,6 +238,12 @@ Compiled 2 Solidity files successfully ### Deploying your contracts +:::tip + +Try [Hardhat Ignition](/ignition) for your deployments! Our new declarative system for deploying smart contracts without getting caught up in execution details. + +::: + Next, to deploy the contract we will use a Hardhat script. Inside the `scripts/` folder you will find a file with the following code: diff --git a/docs/src/content/tutorial/deploying-to-a-live-network.md b/docs/src/content/tutorial/deploying-to-a-live-network.md index 56900e7867..80d6f61b32 100644 --- a/docs/src/content/tutorial/deploying-to-a-live-network.md +++ b/docs/src/content/tutorial/deploying-to-a-live-network.md @@ -1,5 +1,11 @@ # 7. Deploying to a live network +:::tip + +Try [Hardhat Ignition](/ignition) for your deployments! Our new declarative system for deploying smart contracts without getting caught up in execution details. + +::: + Once you're ready to share your dApp with other people, you may want to deploy it to a live network. This way others can access an instance that's not running locally on your system. The "mainnet" Ethereum network deals with real money, but there are separate "testnet" networks that do not. These testnets provide shared staging environments that do a good job of mimicking the real world scenario without putting real money at stake, and [Ethereum has several](https://ethereum.org/en/developers/docs/networks/#ethereum-testnets), like _Sepolia_ and _Goerli_. We recommend you deploy your contracts to the _Sepolia_ testnet.