Skip to content

Commit

Permalink
Update solmate to fork with memory-safe annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
axic committed Oct 21, 2022
1 parent 38d17e6 commit 36d8b9e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
url = https://github.com/foundry-rs/forge-std
[submodule "lib/solmate"]
path = lib/solmate
url = https://github.com/rari-capital/solmate
url = https://github.com/axic/solmate
[submodule "lib/puretea"]
path = lib/puretea
url = https://github.com/axic/puretea
2 changes: 1 addition & 1 deletion lib/solmate
Submodule solmate updated 47 files
+294 −60 .gas-snapshot
+1 −1 .vscode/settings.json
+7 −4 README.md
+4 −4 foundry.toml
+1 −1 lib/ds-test
+2 −2 package-lock.json
+3 −3 package.json
+2 −2 src/auth/Auth.sol
+1 −1 src/auth/Owned.sol
+1 −1 src/auth/authorities/MultiRolesAuthority.sol
+1 −1 src/auth/authorities/RolesAuthority.sol
+1 −1 src/mixins/ERC4626.sol
+1 −1 src/test/Auth.t.sol
+1 −1 src/test/Bytes32AddressLib.t.sol
+1 −1 src/test/CREATE3.t.sol
+1 −1 src/test/DSTestPlus.t.sol
+8 −4 src/test/ERC1155.t.sol
+1 −1 src/test/ERC20.t.sol
+1 −1 src/test/ERC4626.t.sol
+1 −1 src/test/ERC721.t.sol
+84 −1 src/test/FixedPointMathLib.t.sol
+107 −0 src/test/LibString.t.sol
+50 −0 src/test/MerkleProofLib.t.sol
+1 −1 src/test/MultiRolesAuthority.t.sol
+1 −1 src/test/Owned.t.sol
+1 −1 src/test/ReentrancyGuard.t.sol
+1 −1 src/test/RolesAuthority.t.sol
+1 −1 src/test/SSTORE2.t.sol
+33 −1 src/test/SafeCastLib.t.sol
+1 −1 src/test/SafeTransferLib.t.sol
+60 −0 src/test/SignedWadMath.t.sol
+5 −5 src/test/WETH.t.sol
+2 −2 src/test/utils/DSTestPlus.sol
+2 −2 src/tokens/ERC1155.sol
+1 −1 src/tokens/ERC20.sol
+2 −2 src/tokens/ERC721.sol
+1 −1 src/tokens/WETH.sol
+1 −1 src/utils/Bytes32AddressLib.sol
+1 −1 src/utils/CREATE3.sol
+68 −37 src/utils/FixedPointMathLib.sol
+55 −0 src/utils/LibString.sol
+47 −0 src/utils/MerkleProofLib.sol
+1 −1 src/utils/ReentrancyGuard.sol
+1 −1 src/utils/SSTORE2.sol
+13 −1 src/utils/SafeCastLib.sol
+1 −1 src/utils/SafeTransferLib.sol
+218 −0 src/utils/SignedWadMath.sol

0 comments on commit 36d8b9e

Please sign in to comment.