Skip to content

Commit

Permalink
build: bump solady
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulRBerg committed Jul 7, 2023
1 parent 5173801 commit accf26a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/solady
Submodule solady updated 82 files
+467 −459 .gas-snapshot
+39 −0 .github/workflows/ci-woke.yml
+9 −0 .gitignore
+29 −16 README.md
+ audits/ackee-blockchain-solady-report.pdf
+17 −0 ext/woke/EIP712Mock.sol
+149 −0 ext/woke/ERC1155Mock.sol
+121 −0 ext/woke/ERC20Mock.sol
+86 −0 ext/woke/ERC721Mock.sol
+21 −0 ext/woke/MerkleProofMock.sol
+44 −0 ext/woke/NoETHMock.sol
+58 −0 ext/woke/SignatureCheckerMock.sol
+0 −0 ext/woke/__init__.py
+84 −0 ext/woke/test_eip712.py
+65 −0 ext/woke/test_eip712_fuzz.py
+443 −0 ext/woke/test_erc1155.py
+537 −0 ext/woke/test_erc1155_fuzz.py
+242 −0 ext/woke/test_erc20.py
+365 −0 ext/woke/test_erc721_fuzz.py
+55 −0 ext/woke/test_merkle_proof.py
+124 −0 ext/woke/test_merkle_proof_fuzz.py
+178 −0 ext/woke/test_signature_checker_fuzz.py
+89 −0 ext/woke/utils.py
+17 −0 ext/woke/weird/Approval.sol
+17 −0 ext/woke/weird/ApprovalToZero.sol
+29 −0 ext/woke/weird/BlockList.sol
+62 −0 ext/woke/weird/Bytes32Metadata.sol
+89 −0 ext/woke/weird/DaiPermit.sol
+62 −0 ext/woke/weird/ERC20.sol
+12 −0 ext/woke/weird/HighDecimals.sol
+12 −0 ext/woke/weird/LowDecimals.sol
+58 −0 ext/woke/weird/MissingReturns.sol
+56 −0 ext/woke/weird/NoRevert.sol
+36 −0 ext/woke/weird/Pausable.sol
+140 −0 ext/woke/weird/Proxied.sol
+31 −0 ext/woke/weird/Reentrant.sol
+61 −0 ext/woke/weird/ReturnsFalse.sol
+17 −0 ext/woke/weird/RevertToZero.sol
+17 −0 ext/woke/weird/RevertZero.sol
+34 −0 ext/woke/weird/TransferFee.sol
+87 −0 ext/woke/weird/Uint96.sol
+61 −0 ext/woke/weird/Upgradable.sol
+28 −0 ext/woke/woke-via-ir.toml
+27 −0 ext/woke/woke.toml
+96 −35 js/solady.js
+64 −22 js/solady.test.js
+1 −1 package.json
+1 −0 src/Milady.sol
+5 −5 src/auth/Ownable.sol
+43 −38 src/tokens/ERC1155.sol
+5 −4 src/tokens/ERC20.sol
+162 −0 src/tokens/ERC2981.sol
+8 −3 src/tokens/ERC721.sol
+1 −1 src/utils/CREATE3.sol
+2 −2 src/utils/DateTimeLib.sol
+11 −13 src/utils/DynamicBufferLib.sol
+150 −180 src/utils/ECDSA.sol
+6 −0 src/utils/EIP712.sol
+5 −23 src/utils/FixedPointMathLib.sol
+32 −0 src/utils/LibBit.sol
+39 −48 src/utils/LibSort.sol
+3 −3 src/utils/LibString.sol
+33 −31 src/utils/LibZip.sol
+47 −36 src/utils/MerkleProofLib.sol
+13 −6 src/utils/SafeTransferLib.sol
+1 −1 src/utils/SignatureCheckerLib.sol
+5 −5 test/DynamicBufferLib.t.sol
+149 −30 test/ECDSA.t.sol
+126 −8 test/ERC1155.t.sol
+140 −0 test/ERC2981.t.sol
+77 −0 test/ERC721.t.sol
+2 −0 test/FixedPointMathLib.t.sol
+24 −0 test/LibBit.t.sol
+202 −200 test/LibSort.t.sol
+13 −13 test/LibString.t.sol
+67 −46 test/MerkleProofLib.t.sol
+46 −53 test/SafeTransferLib.t.sol
+3 −3 test/SignatureCheckerLib.t.sol
+1 −1 test/WETH.t.sol
+39 −37 test/utils/TestPlus.sol
+40 −0 test/utils/mocks/MockERC2981.sol
+11 −11 test/utils/weird-tokens/ReturnsRawBytesToken.sol

0 comments on commit accf26a

Please sign in to comment.