Creating a simple storage contract, a script to deploy the contract, and a test for the contract using Foundry.
(This is part of the Cyfrin Solidity Blockchain Course)
- git
- You'll know you did it right if you can run
git --versionand you see a response likegit version x.x.x
- You'll know you did it right if you can run
- ganache
- You'll know you did it right if you can run the application and see:

- You can alternatively use ganache-cli or hardhat
- You'll know you did it right if you can run the application and see:
- foundry
- You'll know you did it right if you can run
forge --versionand you see a response likeforge 0.2.0 (816e00b 2023-03-16T00:05:26.396218Z)
- You'll know you did it right if you can run
If you can't or don't want to run and install locally, you can work with this repo in Gitpod. If you do this, you can skip the clone this repo part.
Clone this repo
git clone https://github.com/Cyfrin/foundry-simple-storage-f23
cd foundry-simple-storage-f23
- Run your ganache local chain, by hitting
quickstarton your ganache application
Save the workspace. This way, next time you open ganache you can start the workspace you've created, otherwise you'll have to redo all the steps below.
- Copy the
RPC SERVERsting in your ganache CLI, and place it into your.envfile similar to what's in.env.example.
.env Example:
RPC_URL=http://0.0.0.0:8545
- Hit the key on one of the accounts, and copy the key you see and place it into your
.envfile, similar to what you see in.env.example.
.env Example:
PRIVATE_KEY=11ee3108a03081fe260ecdc106554d09d9d1209bcafd46942b10e02943effc4a
- Compile your code
Run
forge compile
- Deploy your contract
forge create --private-key <PRIVATE_KEY>
If you're using WSL, for the ganache UI you'll have to use a different endpoint. You have 4 options to fix this:
- Use the WSL endpoint on the ganache UI (this sometimes doesn't work)
- Use
anvil(We will move to anvil at some point anyways...)
Make sure you have a metamask or other wallet, and export the private key.
IMPORTANT
USE A METAMASK THAT DOESNT HAVE ANY REAL FUNDS IN IT. Just in case you accidentally push your private key to a public place. I highly recommend you use a different metamask or wallet when developing.
-
Export your private key and place it in your
.envfile, as done above. -
Go to Alchemy and create a new project on the testnet of choice (ie, Goerli)
-
Grab your URL associated with the testnet, and place it into your
.envfile. -
Make sure you have testnet ETH in your account. You can get some here. You should get testnet ETH for the same testnet that you made a project in Alchemy (ie, Goerli)
-
Run
forge create --private-key <PRIVATE_KEY> --rpc-url <ALCHEMY_URL>
Or, you can use a deploy script!
forge script script/DeploySimpleStorage.s.sol --private-key <PRIVATE_KEY> --rpc-url <ALCHEMY_URL>


