-
Notifications
You must be signed in to change notification settings - Fork 432
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f6c4c9c
commit 58fa0f8
Showing
15 changed files
with
92 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
[submodule "lib/forge-std"] | ||
branch = v1 | ||
path = lib/forge-std | ||
url = https://github.com/foundry-rs/forge-std |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
// SPDX-License-Identifier: MIT | ||
// OpenZeppelin Contracts (last updated v4.8.3) (interfaces/IERC1967.sol) | ||
|
||
pragma solidity ^0.8.0; | ||
|
||
/** | ||
* @dev ERC-1967: Proxy Storage Slots. This interface contains the events defined in the ERC. | ||
* | ||
* _Available since v4.9._ | ||
*/ | ||
interface IERC1967Upgradeable { | ||
/** | ||
* @dev Emitted when the implementation is upgraded. | ||
*/ | ||
event Upgraded(address indexed implementation); | ||
|
||
/** | ||
* @dev Emitted when the admin account has changed. | ||
*/ | ||
event AdminChanged(address previousAdmin, address newAdmin); | ||
|
||
/** | ||
* @dev Emitted when the beacon is changed. | ||
*/ | ||
event BeaconUpgraded(address indexed beacon); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule forge-std
updated
20 files
+1 −1 | foundry.toml | |
+1 −1 | lib/ds-test | |
+1 −1 | package.json | |
+2 −0 | src/Base.sol | |
+187 −20 | src/StdAssertions.sol | |
+77 −33 | src/StdChains.sol | |
+87 −28 | src/StdCheats.sol | |
+92 −0 | src/StdInvariant.sol | |
+28 −28 | src/StdJson.sol | |
+1 −1 | src/StdStorage.sol | |
+333 −0 | src/StdStyle.sol | |
+71 −5 | src/StdUtils.sol | |
+5 −1 | src/Test.sol | |
+26 −2 | src/Vm.sol | |
+73 −0 | src/interfaces/IMulticall3.sol | |
+367 −0 | test/StdAssertions.t.sol | |
+52 −15 | test/StdChains.t.sol | |
+97 −1 | test/StdCheats.t.sol | |
+110 −0 | test/StdStyle.t.sol | |
+119 −13 | test/StdUtils.t.sol |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters