-
Notifications
You must be signed in to change notification settings - Fork 1
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
Showing
3 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
Submodule amm-core
updated
30 files
Submodule forge-std
updated
32 files
+6 −12 | .github/workflows/ci.yml | |
+3 −1 | .github/workflows/sync.yml | |
+193 −0 | CONTRIBUTING.md | |
+17 −1 | README.md | |
+2 −2 | foundry.toml | |
+1 −1 | package.json | |
+12 −1 | scripts/vm.py | |
+1 −1 | src/StdAssertions.sol | |
+21 −8 | src/StdChains.sol | |
+3 −3 | src/StdCheats.sol | |
+18 −3 | src/StdInvariant.sol | |
+104 −0 | src/StdJson.sol | |
+1 −1 | src/StdStorage.sol | |
+104 −0 | src/StdToml.sol | |
+1 −1 | src/StdUtils.sol | |
+592 −63 | src/Vm.sol | |
+635 −608 | src/console.sol | |
+1 −1,555 | src/console2.sol | |
+2 −2 | src/interfaces/IERC4626.sol | |
+1 −5 | src/mocks/MockERC721.sol | |
+693 −4 | src/safeconsole.sol | |
+1 −1 | test/StdAssertions.t.sol | |
+28 −22 | test/StdChains.t.sol | |
+11 −11 | test/StdCheats.t.sol | |
+12 −12 | test/StdError.t.sol | |
+1 −1 | test/StdJson.t.sol | |
+4 −14 | test/StdMath.t.sol | |
+13 −5 | test/StdStorage.t.sol | |
+1 −1 | test/StdStyle.t.sol | |
+1 −1 | test/StdToml.t.sol | |
+12 −12 | test/StdUtils.t.sol | |
+9 −6 | test/Vm.t.sol |
Submodule solady
updated
18 files
+1 −0 | README.md | |
+1 −1 | package.json | |
+1 −0 | src/Milady.sol | |
+103 −0 | src/accounts/ERC7821.sol | |
+20 −0 | src/utils/EfficientHashLib.sol | |
+28 −0 | src/utils/LibBytes.sol | |
+220 −0 | src/utils/LibCall.sol | |
+30 −0 | src/utils/P256.sol | |
+14 −9 | src/utils/SignatureCheckerLib.sol | |
+28 −0 | src/utils/g/LibBytes.sol | |
+111 −0 | test/ERC7821.t.sol | |
+21 −0 | test/EfficientHashLib.t.sol | |
+13 −0 | test/LibBytes.t.sol | |
+59 −0 | test/LibCall.t.sol | |
+2 −0 | test/LibString.t.sol | |
+14 −0 | test/P256.t.sol | |
+6 −0 | test/SignatureCheckerLib.t.sol | |
+27 −0 | test/utils/mocks/MockERC7821.sol |