Skip to content

Commit

Permalink
fix dep issues
Browse files Browse the repository at this point in the history
  • Loading branch information
iammrjude committed Dec 10, 2023
1 parent 6ecd476 commit 3edd61b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/openzeppelin-contracts
2 changes: 1 addition & 1 deletion lib/openzeppelin-contracts-upgradeable
2 changes: 1 addition & 1 deletion lib/solady
Submodule solady updated 82 files
+522 −545 .gas-snapshot
+0 −10 .github/issue_template.md
+1 −1 .github/workflows/ci-all-via-ir.yml
+0 −36 .github/workflows/ci-wake.yml
+40 −0 .github/workflows/ci-woke.yml
+22 −32 .github/workflows/ci.yml
+3 −2 .gitignore
+0 −2 README.md
+0 −0 ext/woke/EIP712Mock.sol
+0 −0 ext/woke/ERC1155Mock.sol
+0 −0 ext/woke/ERC20Mock.sol
+0 −0 ext/woke/ERC721Mock.sol
+0 −0 ext/woke/MerkleProofMock.sol
+0 −0 ext/woke/NoETHMock.sol
+0 −0 ext/woke/SignatureCheckerMock.sol
+0 −0 ext/woke/__init__.py
+3 −1 ext/woke/test_eip712.py
+3 −2 ext/woke/test_eip712_fuzz.py
+1 −1 ext/woke/test_erc1155.py
+3 −2 ext/woke/test_erc1155_fuzz.py
+18 −2 ext/woke/test_erc20.py
+3 −2 ext/woke/test_erc721_fuzz.py
+6 −2 ext/woke/test_merkle_proof.py
+3 −2 ext/woke/test_merkle_proof_fuzz.py
+3 −2 ext/woke/test_signature_checker_fuzz.py
+1 −1 ext/woke/utils.py
+0 −0 ext/woke/weird/Approval.sol
+0 −0 ext/woke/weird/ApprovalToZero.sol
+0 −0 ext/woke/weird/BlockList.sol
+0 −0 ext/woke/weird/Bytes32Metadata.sol
+0 −0 ext/woke/weird/DaiPermit.sol
+0 −0 ext/woke/weird/ERC20.sol
+0 −0 ext/woke/weird/HighDecimals.sol
+0 −0 ext/woke/weird/LowDecimals.sol
+0 −0 ext/woke/weird/MissingReturns.sol
+0 −0 ext/woke/weird/NoRevert.sol
+0 −0 ext/woke/weird/Pausable.sol
+0 −0 ext/woke/weird/Proxied.sol
+0 −0 ext/woke/weird/Reentrant.sol
+0 −0 ext/woke/weird/ReturnsFalse.sol
+0 −0 ext/woke/weird/RevertToZero.sol
+0 −0 ext/woke/weird/RevertZero.sol
+0 −0 ext/woke/weird/TransferFee.sol
+0 −0 ext/woke/weird/Uint96.sol
+0 −0 ext/woke/weird/Upgradable.sol
+5 −4 ext/woke/woke-via-ir.toml
+27 −0 ext/woke/woke.toml
+22 −0 foundry.toml
+1 −1 package.json
+0 −2 src/Milady.sol
+0 −104 src/accounts/ERC1271.sol
+47 −8 src/accounts/ERC4337.sol
+33 −29 src/accounts/ERC4337Factory.sol
+46 −7 src/accounts/ERC6551.sol
+56 −41 src/tokens/ERC6909.sol
+53 −90 src/utils/ECDSA.sol
+12 −12 src/utils/EIP712.sol
+79 −235 src/utils/FixedPointMathLib.sol
+0 −25 src/utils/GasBurnerLib.sol
+0 −56 src/utils/LibClone.sol
+0 −5 src/utils/LibString.sol
+15 −12 src/utils/LibZip.sol
+0 −13 src/utils/Multicallable.sol
+9 −56 src/utils/SignatureCheckerLib.sol
+24 −18 src/utils/UUPSUpgradeable.sol
+8 −6 test/ECDSA.t.sol
+1 −2 test/ERC1967Factory.t.sol
+8 −102 test/ERC4337.t.sol
+24 −29 test/ERC4337Factory.t.sol
+11 −26 test/ERC6551.t.sol
+24 −78 test/ERC6909.t.sol
+0 −665 test/FixedPointMathLib.t.sol
+0 −31 test/GasBurnerLib.t.sol
+5 −0 test/LibClone.t.sol
+0 −20 test/LibString.t.sol
+0 −8 test/SignatureCheckerLib.t.sol
+4 −4 test/UUPSUpgradeable.t.sol
+0 −5 test/utils/TestPlus.sol
+4 −2 test/utils/forge-std/Script.sol
+1,581 −0 test/utils/forge-std/console.sol
+1 −0 test/utils/mocks/MockERC6909.sol
+2 −6 test/utils/mocks/MockUUPSImplementation.sol

0 comments on commit 3edd61b

Please sign in to comment.