-
Notifications
You must be signed in to change notification settings - Fork 6
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
6585fdc
commit 1e6c3c3
Showing
7 changed files
with
144 additions
and
32 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
Submodule forge-std
updated
27 files
+1 −0 | .gitattributes | |
+48 −6 | .github/workflows/ci.yml | |
+1 −1 | package.json | |
+666 −0 | scripts/vm.py | |
+4 −3 | src/Script.sol | |
+18 −5 | src/StdChains.sol | |
+156 −15 | src/StdCheats.sol | |
+16 −1 | src/StdInvariant.sol | |
+18 −14 | src/StdJson.sol | |
+54 −3 | src/StdStorage.sol | |
+2 −2 | src/StdStyle.sol | |
+62 −34 | src/StdUtils.sol | |
+4 −3 | src/Test.sol | |
+955 −368 | src/Vm.sol | |
+216 −0 | src/mocks/MockERC20.sol | |
+221 −0 | src/mocks/MockERC721.sol | |
+93 −77 | test/StdAssertions.t.sol | |
+93 −37 | test/StdChains.t.sol | |
+167 −64 | test/StdCheats.t.sol | |
+13 −11 | test/StdError.t.sol | |
+27 −12 | test/StdMath.t.sol | |
+66 −34 | test/StdStorage.t.sol | |
+4 −4 | test/StdStyle.t.sol | |
+66 −36 | test/StdUtils.t.sol | |
+15 −0 | test/Vm.t.sol | |
+441 −0 | test/mocks/MockERC20.t.sol | |
+721 −0 | test/mocks/MockERC721.t.sol |
Submodule seaport
updated
61 files
Submodule solady
updated
13 files
+62 −61 | .gas-snapshot | |
+1 −1 | package.json | |
+26 −1 | src/accounts/ERC4337.sol | |
+1 −1 | src/accounts/ERC4337Factory.sol | |
+1 −1 | src/accounts/ERC6551.sol | |
+1 −1 | src/accounts/ERC6551Proxy.sol | |
+4 −4 | src/tokens/ERC6909.sol | |
+0 −1 | src/utils/ERC1967Factory.sol | |
+0 −4 | src/utils/LibClone.sol | |
+6 −7 | src/utils/LibPRNG.sol | |
+7 −0 | test/ERC4337.t.sol | |
+3 −3 | test/ERC6909.t.sol | |
+2 −2 | test/utils/mocks/MockERC6909.sol |
Submodule solmate
updated
14 files
+211 −181 | .gas-snapshot | |
+1 −0 | README.md | |
+1 −1 | package-lock.json | |
+1 −1 | package.json | |
+26 −1 | src/test/CREATE3.t.sol | |
+378 −0 | src/test/ERC6909.t.sol | |
+1 −2 | src/test/SafeCastLib.t.sol | |
+14 −0 | src/test/SignedWadMath.t.sol | |
+22 −0 | src/test/utils/mocks/MockERC6909.sol | |
+118 −0 | src/tokens/ERC6909.sol | |
+5 −1 | src/utils/CREATE3.sol | |
+1 −1 | src/utils/SafeCastLib.sol | |
+7 −7 | src/utils/SafeTransferLib.sol | |
+12 −2 | src/utils/SignedWadMath.sol |
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