Ethereum development environment for professionals by Nomic Labs

mkdir epic-nfts
cd epic-nfts
npm init -y
npm install --save-dev hardhat

npx hardhat // start new project 

npx hardhat run scripts/run.js // runs the smart contract 
npx hardhat run scripts/deploy.js --network rinkeby // testnet deployment 

End of Section #1 Code