Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 83cd698

Browse files
committedJun 23, 2024·
updated for 2024
1 parent 68fcbda commit 83cd698

File tree

2 files changed

+5
-8
lines changed

2 files changed

+5
-8
lines changed
 

‎README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -41,16 +41,16 @@ This project is meant to be a stablecoin where users can deposit WETH and WBTC i
4141
## Quickstart
4242

4343
```
44-
git clone https://github.com/Cyfrin/foundry-defi-stablecoin-f23
45-
cd foundry-defi-stablecoin-f23
44+
git clone https://github.com/Cyfrin/foundry-defi-stablecoin-cu
45+
cd foundry-defi-stablecoin-cu
4646
forge build
4747
```
4848

4949
### Optional Gitpod
5050

5151
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.
5252

53-
[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#github.com/PatrickAlphaC/foundry-smart-contract-lottery-f23)
53+
[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#github.com/PatrickAlphaC/foundry-smart-contract-lottery-cu)
5454

5555
# Updates
5656

@@ -177,7 +177,7 @@ slither :; slither . --config-file slither.config.json
177177

178178
If you appreciated this, feel free to follow me or donate!
179179

180-
ETH/Arbitrum/Optimism/Polygon/etc Address: 0x9680201d9c93d65a3603d2088d125e955c73BD65
180+
ETH/zkSync/Arbitrum/Optimism Address(`cyfrin1.eth`): 0x3846c3A30E62075Fa916216b35EF04B8F53931f6
181181

182182
[![Patrick Collins Twitter](https://img.shields.io/badge/Twitter-1DA1F2?style=for-the-badge&logo=twitter&logoColor=white)](https://twitter.com/PatrickAlphaC)
183183
[![Patrick Collins YouTube](https://img.shields.io/badge/YouTube-FF0000?style=for-the-badge&logo=youtube&logoColor=white)](https://www.youtube.com/channel/UCn-3f8tw_E1jZvhuHatROwA)

‎test/fuzz/continueOnRevert/ContinueOnRevertInvariants.t.sol

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
// Commented out for now until revert on fail == false per function customization is implemented
2-
3-
// // SPDX-License-Identifier: MIT
1+
// SPDX-License-Identifier: MIT
42

53
pragma solidity ^0.8.19;
64

@@ -15,7 +13,6 @@ import { DSCEngine } from "../../../src/DSCEngine.sol";
1513
import { DecentralizedStableCoin } from "../../../src/DecentralizedStableCoin.sol";
1614
import { HelperConfig } from "../../../script/HelperConfig.s.sol";
1715
import { DeployDSC } from "../../../script/DeployDSC.s.sol";
18-
// import { ERC20Mock } from "@openzeppelin/contracts/mocks/ERC20Mock.sol"; Updated mock location
1916
import { ERC20Mock } from "../../mocks/ERC20Mock.sol";
2017
import { ContinueOnRevertHandler } from "./ContinueOnRevertHandler.t.sol";
2118
import { console } from "forge-std/console.sol";

0 commit comments

Comments
 (0)
Please sign in to comment.