Skip to content

Commit

Permalink
fix: update oz and solidity utils lib
Browse files Browse the repository at this point in the history
  • Loading branch information
sendra committed Dec 10, 2024
1 parent bcc0e87 commit 43f170b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[submodule "lib/openzeppelin-contracts"]
path = lib/openzeppelin-contracts
url = https://github.com/OpenZeppelin/openzeppelin-contracts
branch = release-v4.9
branch = release-v5.0
[submodule "lib/solidity-utils"]
path = lib/solidity-utils
url = https://github.com/bgd-labs/solidity-utils
2 changes: 1 addition & 1 deletion lib/openzeppelin-contracts
2 changes: 1 addition & 1 deletion lib/solidity-utils
Submodule solidity-utils updated 34 files
+20 −0 .github/workflows/comment.yml
+0 −12 .github/workflows/dispatch-draft-release.yml
+0 −27 .github/workflows/merge-main.yml
+46 −9 .github/workflows/tests.yml
+3 −1 foundry.toml
+1 −1 lib/forge-std
+1 −1 src/contracts/access-control/UpgradeableOwnableWithGuardian.sol
+0 −38 src/contracts/transparent-proxy/ERC1967Proxy.sol
+0 −119 src/contracts/transparent-proxy/ERC1967Upgrade.sol
+17 −68 src/contracts/transparent-proxy/ProxyAdmin.sol
+23 −21 src/contracts/transparent-proxy/TransparentProxyFactoryBase.sol
+84 −96 src/contracts/transparent-proxy/TransparentUpgradeableProxy.sol
+0 −17 src/contracts/transparent-proxy/interfaces/IOwnable.sol
+9 −4 src/contracts/transparent-proxy/interfaces/ITransparentProxyFactory.sol
+8 −0 src/contracts/utils/ChainHelpers.sol
+21 −0 src/contracts/utils/PermissionlessRescuable.sol
+7 −13 src/contracts/utils/Rescuable.sol
+36 −0 src/contracts/utils/RescuableACL.sol
+30 −0 src/contracts/utils/RescuableBase.sol
+12 −10 src/contracts/utils/ScriptUtils.sol
+30 −0 src/contracts/utils/interfaces/IPermissionlessRescuable.sol
+4 −28 src/contracts/utils/interfaces/IRescuable.sol
+39 −0 src/contracts/utils/interfaces/IRescuableBase.sol
+4 −0 src/mocks/ERC20.sol
+12 −0 test/ChainHelperTest.t.sol
+34 −10 test/OwnableWithGuardian.t.sol
+127 −0 test/PermissionlessRescuable.t.sol
+17 −7 test/Rescuable.t.sol
+12 −5 test/Rescuable721.t.sol
+117 −0 test/RescuableACL.t.sol
+17 −9 test/TransparentProxyFactory.t.sol
+6 −6 test/UpgradeableOwnableWithGuardian.t.sol
+5 −10 test/create3Test.t.sol
+24 −19 zksync/test/TransparentProxyFactoryZkSync.t.sol

0 comments on commit 43f170b

Please sign in to comment.