diff --git a/docs/.vuepress/config.js b/docs/.vuepress/config.js index dcb8cf3..f7e631e 100644 --- a/docs/.vuepress/config.js +++ b/docs/.vuepress/config.js @@ -85,8 +85,10 @@ module.exports = { '/tutorial/first-steps', '/tutorial/minting-service', '/tutorial/lazy-minting', + '/tutorial/mint-nftstorage-polygon', '/tutorial/gallery-app', - '/tutorial/using-nfts-in-games' + '/tutorial/using-nfts-in-games', + '/tutorial/flow-nft-marketplace' ] }, { diff --git a/docs/tutorial/first-steps.md b/docs/tutorial/first-steps.md index 1ffaaa8..9fec64a 100644 --- a/docs/tutorial/first-steps.md +++ b/docs/tutorial/first-steps.md @@ -73,7 +73,7 @@ On [the getting started page for Ethers](https://docs.ethers.io/v5/getting-start ### Gather the needed details -For this tutorial, we're going to connect to a smart contract called `Greeter` that's included with a new [Hardhat](https://hardhat.io) project. It's been deployed to the Ropsten testnet at the address `0xE0282e76237B8eB19A5D08e1741b8b3e2691Dadd`, and you can find details about it on the [EtherScan Ropsten block explorer](https://ropsten.etherscan.io) by searching for that address, which should take you to [the address detail view](https://ropsten.etherscan.io/address/0xE0282e76237B8eB19A5D08e1741b8b3e2691Dadd). +For this tutorial, we're going to connect to a smart contract called `Greeter` that's included with a new [Hardhat](https://hardhat.org/) project. It's been deployed to the Ropsten testnet at the address `0xE0282e76237B8eB19A5D08e1741b8b3e2691Dadd`, and you can find details about it on the [EtherScan Ropsten block explorer](https://ropsten.etherscan.io) by searching for that address, which should take you to [the address detail view](https://ropsten.etherscan.io/address/0xE0282e76237B8eB19A5D08e1741b8b3e2691Dadd). Ethers has a [Contract API](https://docs.ethers.io/v5/api/contract/contract/) that abstracts over the details of the blockchain and lets us interact with smart contracts as if they were regular JavaScript objects named `Contract`. @@ -95,6 +95,9 @@ In the `hello-eth` folder, next to `ethers-5.1.esm.min.js`, create a file called
- +