Skip to content

Minor grammatical improvement #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion NFT_Game/en/Section_1/Lesson_1_Get_Local_Env_Setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ This is pretty epic. We'll get into this more, but basically what's happening he

1. Hardhat compiles your smart contract from solidity to bytecode.
2. Hardhat will spin up a "local blockchain" on your computer. It's like a mini, test version of Ethereum running on your computer to help you quickly test stuff!
3. Hardhat will then "deploy" your compiled contract to your local blockchain. That's that address you see at the end there. It's our deployed contract, on our mini version of Ethereum.
3. Hardhat will then "deploy" your compiled contract to your local blockchain. That's the address you see at the end there. It's our deployed contract, on our mini version of Ethereum.

If you're curious, feel free to look at the code inside the project to see how it works. Specifically, check out `Greeter.sol` which is the smart contract and `sample-script.js` which actually runs the contract.

Expand Down