update file path for new NFT contract in description (#1048)

Co-authored-by: wbnns <hello@wbnns.com>
This commit is contained in:
Jack Chuma
2024-10-08 10:54:42 -04:00
committed by GitHub
parent fa379d05df
commit a16234ef95

View File

@@ -130,7 +130,7 @@ To add the OpenZeppelin Contracts library to your project, run:
forge install openzeppelin/openzeppelin-contracts
```
In your project, delete the `src/Counter.sol` contract that was generated with the project and add the above code in a new file called `contracts/NFT.sol`. (You can also delete the `test/Counter.t.sol` and `script/Counter.s.sol` files, but you should add your own tests ASAP!).
In your project, delete the `src/Counter.sol` contract that was generated with the project and add the above code in a new file called `src/NFT.sol`. (You can also delete the `test/Counter.t.sol` and `script/Counter.s.sol` files, but you should add your own tests ASAP!).
To compile our basic NFT contract using Foundry, run: