Skip to content

Commit

Permalink
Promote Hardhat Ignition in Hardhat's tutorial and getting started
Browse files Browse the repository at this point in the history
  • Loading branch information
alcuadrado committed Oct 22, 2023
1 parent 4134a7d commit 767f202
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions docs/src/content/hardhat-runner/docs/getting-started/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
6 changes: 6 additions & 0 deletions docs/src/content/tutorial/deploying-to-a-live-network.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down

0 comments on commit 767f202

Please sign in to comment.