Conversation
Signed-off-by: pavedroad <qcqs@outlook.com>
Collaborator
Author
|
We could change EVM version to |
Contributor
hellwolf
reviewed
Aug 22, 2025
hellwolf
reviewed
Aug 22, 2025
packages/automation-contracts/scheduler/contracts/VestingSchedulerV3.sol
Show resolved
Hide resolved
hellwolf
reviewed
Aug 22, 2025
packages/automation-contracts/scheduler/contracts/VestingSchedulerV2.sol
Show resolved
Hide resolved
hellwolf
reviewed
Aug 22, 2025
|
|
||
| console.log("Revert with overflow."); | ||
| vm.expectRevert("SafeCast: value doesn't fit in 96 bits"); | ||
| vm.expectRevert(); // SafeCastOverflowedIntDowncast |
Contributor
There was a problem hiding this comment.
there is no reference to it?
hellwolf
reviewed
Aug 22, 2025
|
|
||
| console.log("Revert with overflow."); | ||
| vm.expectRevert("SafeCast: value doesn't fit in 96 bits"); | ||
| vm.expectRevert(); // SafeCastOverflowedIntDowncast |
hellwolf
reviewed
Aug 22, 2025
| newCtx = ctx; | ||
|
|
||
| if (pool.superToken().isPool(this, memberAddr)) { | ||
| if (memberAddr == address(0) || pool.superToken().isPool(this, memberAddr)) { |
hellwolf
reviewed
Aug 22, 2025
| error NO_PROXY_LOOP(); // 0z66750bca | ||
|
|
||
| constructor(address implementation_) UpgradeableBeacon(implementation_) {} | ||
| constructor(address implementation_) UpgradeableBeacon(implementation_, _msgSender()) {} |
Contributor
There was a problem hiding this comment.
Note:
- Context._msgSender
- Ownable is Context
hellwolf
reviewed
Aug 22, 2025
| () => superfluid.getSimpleACL(), | ||
| "SIMPLE_ACL" | ||
| ); | ||
| // SimpleACL has now been deployed on all networks. |
Contributor
There was a problem hiding this comment.
Okay. What about deploying to a new network, does the bootstrap logic still exist?
hellwolf
reviewed
Aug 22, 2025
| vm.stopPrank(); | ||
|
|
||
| // cannot connect the zero address | ||
| vm.startPrank(alice); |
hellwolf
reviewed
Aug 22, 2025
hellwolf
reviewed
Aug 26, 2025
hellwolf
reviewed
Oct 9, 2025
hellwolf
reviewed
Oct 9, 2025
hellwolf
reviewed
Oct 9, 2025
packages/ethereum-contracts/contracts/mocks/ERC777SenderRecipientMock.t.sol
Outdated
Show resolved
Hide resolved
hellwolf
approved these changes
Oct 9, 2025
XKCD Comic RelifLink: https://xkcd.com/2097 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

What & Why
see #2016
How
Imports and notes about what changed:
openzeppelin-contracts is now a git submodule (foundry style) instead of an npm package.
In order to stay compatible with hardhat (used by legacy tests) and truffle (used by ops scripts), an npm postinstall script places a symlink to that submodule in node_modules. This was found to be the only solution which doesn't cause significant issues with either hardhat or truffle (see dedicated comment).
The openzeppelin imports in the ethereum-contracts package are now qualified by the major version, that is
@openzeppelin-v5/.... This allows contracts using SF contracts as a dependency to use the default namespace@openzeppelinwith the OZ version they prefer. The OZ package is now declared a peerDependency.Hardhat projects need to set up a remapping task in their config file, see CHANGELOG.