Skip to content

Commit

Permalink
chore: update solady
Browse files Browse the repository at this point in the history
  • Loading branch information
TuDo1403 committed May 16, 2024
1 parent c670305 commit c8c6e97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/solady
Submodule solady updated 93 files
+1,073 −945 .gas-snapshot
+4 −2 .github/workflows/ci-all-via-ir.yml
+1 −1 .github/workflows/ci-wake.yml
+17 −10 .github/workflows/ci.yml
+3 −0 .gitignore
+0 −4 .gitmodules
+10 −3 README.md
+2 −2 foundry.toml
+0 −1 lib/ds-test
+1 −1 package.json
+13 −6 src/Milady.sol
+225 −44 src/accounts/ERC1271.sol
+33 −15 src/accounts/ERC4337.sol
+106 −31 src/accounts/ERC6551.sol
+13 −10 src/accounts/ERC6551Proxy.sol
+232 −0 src/accounts/LibERC6551.sol
+4 −4 src/tokens/ERC1155.sol
+4 −1 src/tokens/ERC4626.sol
+4 −4 src/tokens/ERC6909.sol
+56 −34 src/tokens/ERC721.sol
+5 −0 src/utils/Base64.sol
+1 −1 src/utils/CREATE3.sol
+7 −11 src/utils/DateTimeLib.sol
+91 −0 src/utils/DeploylessPredeployQueryer.sol
+754 −3 src/utils/DynamicBufferLib.sol
+1 −1 src/utils/ERC1967Factory.sol
+630 −0 src/utils/EnumerableSetLib.sol
+7 −7 src/utils/FixedPointMathLib.sol
+185 −0 src/utils/Initializable.sol
+3 −3 src/utils/JSONParserLib.sol
+9 −8 src/utils/LibBit.sol
+5 −5 src/utils/LibBitmap.sol
+687 −5 src/utils/LibClone.sol
+235 −7 src/utils/LibPRNG.sol
+27 −1 src/utils/LibSort.sol
+5 −5 src/utils/LibString.sol
+21 −22 src/utils/LibZip.sol
+82 −9 src/utils/MetadataReaderLib.sol
+400 −56 src/utils/MinHeapLib.sol
+97 −0 src/utils/P256.sol
+194 −206 src/utils/RedBlackTreeLib.sol
+55 −0 src/utils/ReentrancyGuard.sol
+1 −1 src/utils/SSTORE2.sol
+284 −97 src/utils/SafeCastLib.sol
+188 −3 src/utils/SafeTransferLib.sol
+1 −1 src/utils/UUPSUpgradeable.sol
+190 −0 src/utils/UpgradeableBeacon.sol
+21 −1 test/Base64.t.sol
+157 −0 test/DeploylessPredeployQueryer.t.sol
+136 −0 test/DynamicBufferLib.t.sol
+315 −0 test/ERC1271.t.sol
+5 −1 test/ERC20.t.sol
+124 −63 test/ERC4337.t.sol
+1 −1 test/ERC4337Factory.t.sol
+177 −124 test/ERC4626.t.sol
+85 −51 test/ERC6551.t.sol
+3 −3 test/ERC6909.t.sol
+29 −0 test/ERC721.t.sol
+647 −0 test/EnumerableSetLib.t.sol
+159 −0 test/Initializable.t.sol
+29 −1 test/JSONParserLib.t.sol
+19 −10 test/LibBitmap.t.sol
+337 −9 test/LibClone.t.sol
+183 −0 test/LibERC6551.t.sol
+277 −0 test/LibPRNG.t.sol
+17 −0 test/LibSort.t.sol
+20 −25 test/LibString.t.sol
+61 −28 test/MetadataReaderLib.t.sol
+501 −10 test/MinHeapLib.t.sol
+25 −14 test/OwnableRoles.t.sol
+95 −0 test/P256.t.sol
+88 −32 test/RedBlackTree.t.sol
+86 −0 test/ReentrancyGuard.t.sol
+919 −199 test/SafeCastLib.t.sol
+357 −60 test/SafeTransferLib.t.sol
+197 −0 test/UpgradeableBeacon.t.sol
+184 −0 test/utils/Brutalizer.sol
+13 −132 test/utils/TestPlus.sol
+720 −93 test/utils/forge-std/Test.sol
+1,826 −366 test/utils/forge-std/Vm.sol
+2 −8 test/utils/mocks/MockERC1155.sol
+2 −8 test/utils/mocks/MockERC20.sol
+2 −15 test/utils/mocks/MockERC2981.sol
+2 −8 test/utils/mocks/MockERC4337.sol
+21 −8 test/utils/mocks/MockERC6551.sol
+4 −10 test/utils/mocks/MockERC6909.sol
+6 −8 test/utils/mocks/MockERC721.sol
+1 −1 test/utils/mocks/MockEntryPoint.sol
+80 −0 test/utils/mocks/MockInitializable.sol
+8 −20 test/utils/mocks/MockOwnable.sol
+14 −26 test/utils/mocks/MockOwnableRoles.sol
+136 −0 test/utils/mocks/MockReentrancyGuard.sol
+2 −8 test/utils/mocks/MockUUPSImplementation.sol

0 comments on commit c8c6e97

Please sign in to comment.