This monorepo should allow you to get started with a simple Greeter smart contract on localhost and Rinkeby and the Polygon POS chain (L2 network), in record time with this basic react stack using
Heavily influenced by Scaffold-Eth and the existing Typescript branch. Go π check it out π if you haven't !
Clone the project and install dependencies,
git clone https://github.com/nezz0746/typescript-eth-starter.git
cd typescript-eth-starter
yarn install
Environement variables setup
First create an Infura projetct and add your project id to the .env variable INFURA_ID.
This starter is setup to be usable/deployable on a local node and on Rinkeby. So before you start make sure you fill the RINKEBY_PRIVATE_KEY or POLYGON_PRIVATE_KEY variable. (Checkout this section for more info on the private key), or comment out the rinkeby section if you juste want to start working asap on localhost.
// packages/hardhat/hardhat.config.ts
...
networks: {
hardhat: {
chainId: 1337,
},
rinkeby: {
url: `https://rinkeby.infura.io/v3/${INFURA_ID}`,
accounts: [`0x${RINKEBY_PRIVATE_KEY}`]
},
matic: {
url: `https://polygon-mainnet.g.alchemy.com/v2/${ALCHEMY_ID}`,
accounts: [`0x${POLYGON_PRIVATE_KEY}`],
},
}
...
Then open 3 separate terminals and run
- Start your local node
yarn chain
- Deploy your Greeter contract to your local node with
yarn deploy
- Then start your frontend !
yarn dev
Finnally, open http://localhost:3000 to see the app.
You frontend should be live on localhost and ready to submit and new setGreeting
transaction to the local chain !
Here is what it should look like when launched !
What you will find on this page is an interface which interacts with the ERC721 contract: MyNFT, found in packages/hardhat/MyNFT.sol
. It contains two tabs which themselves contain actions typically done as 1. an Owner of a contract and 2. a Client of the contract.
For now two actions are availbale as Owner: The ability to list a new NFT, and pause the sale as the contract is pausable (see the ERC721Pausable extension on OpenZepplin). As a client you'll be able to see the mintable NFTs, mint one and see the NFTs you own.
To improve the UX and understanding of ownership, Alerts and Warnings have been added. For example you'll be warned on the client side if you are minting as the owner or if the sale is paused. And you'll shown an warning as well if you're trying to trigger owner actions while not being the owner.
- Metadata
The crucial thing on the frontend part is to make sure you upload the correct metadata for your NFT. OpenSea documentation is a good place to get a first look at standards. Here we upload the most basic metadatas possible with name, description and image (url)
// Upload NFT Metadata to IPFS
const added = await client.add(
JSON.stringify({
name,
description: "MyNFT",
image: `https://ipfs.infura.io/ipfs/${imageIPFS.path}`,
})
);
// Use the resulting URI for our tokenURI
const url = `https://ipfs.infura.io/ipfs/${added.path}`;
- Opensea
Once you listed a couple of NFT, you should find them on OpenSea's Testnet App !
To deploy your app on Rinkeby, you'll first need to populate two environment variables in your .env
file, that are used in packages/hardhat/hardhat.config.ts
. Checkout Infura it is a suite of tools that make it easy for developpers to deploy things on Ethereum and IPFS. Create a project there, go to Settings and copy the Project ID.
For your private key make sure you use an account you do not have any real funds on and export the private key. As a good practive, never share any account's private key in your repository. Metamask > (Select a dev account) > Account details > Export private key
const INFURA_ID = process.env.INFURA_ID;
const RINKEBY_PRIVATE_KEY = process.env.RINKEBY_PRIVATE_KEY
Now after you deploy,
yarn deploy:rinbeky
your smart contracts should be live on Rinkeby !
IPFS uses Content-Addressing to reference content on the network, instead of location-based addressing as used in traditional web. Whenever you add content to IPFS, a cryptographic hash is produced to identify your content called a CID.
After running,
yarn ipfs
you will be given a hash which reprensent the root CID of the root directory of your website. Then all subdirectories and consequent files will have their own CID since every file on IPFS no matter it's type (folder, image, text, etc) has it's own CID. Using the IPFS CLI you'll be able to visualize what has been hosted on IPFS with all your content by running
> ipfs ls [YOUR_SITE_ROOT_CID]
> QmTgXrRyvfb8su1YaaafBPYDqdjbSG82qMFyW5XPftdjv6 5884 404.html
QmUJUdDtY1hLt73buoaaaDm2rARRVpkYYDHa8BvnZq3TY3 - _next/
Qme1DM3r38NsjAXYAoazamgrdpk1CffLiPc14ZHp5Dgya1 15086 favicon.ico
QmNufHi8Rgwx6K4854aaa8mSpHS5pXznHvMXrrU4yvk8HC - images/
QmeUAy5yNYo67C8id7acWyrrUtm6aks4AQcoDhcveYXrKE 5130 index.html
Qmdd8btEki1ASFBjMeeeaDNyAAzXH1skok8csiPQWWrnaS 1101 vercel.svg
You could also use the IPFS Desktop App to see your content, it has a nice GUI and extra content to better understand how IPFS works. It'll also run a IPFS node for you locally so you can obtain content from other peers.
(This video provides a great introdction to how IPFS works)
TODO
- Add Mainnet fork as dev chain
- Add ENS name converter