-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: validator gater contract #19
Conversation
Signed-off-by: Sander Pick <[email protected]>
093e171
to
6ef42de
Compare
Signed-off-by: Sander Pick <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it looks good, just some minor details:
- would like to see some tests here.
- You mentioned you needed this to test the
gated collateral mode
, can you show how were you testing it? - how are we planning to integrate this with the our ipc repo?
Should |
@avichalp @sanderpick could you review this? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looking good! I left one comment that might need addressing about whenActive
. fyi, i can't approve this because I opened the original PR .
lib/forge-std
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
curious, why are these changing?
// SPDX-License-Identifier: UNLICENSED | ||
pragma solidity ^0.8.23; | ||
// SPDX-License-Identifier: MIT OR Apache-2.0 | ||
pragma solidity ^0.8.26; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
on reflection, maybe 0.8.23 is enough? i don't have a real opinion here
test/ValidatorGater.t.sol
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
very nice
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
💯
|
||
SubnetID public subnet; | ||
mapping(address => PowerRange) public allowed; | ||
// New active status and who was the owner at change time |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: spacing below comment
|
||
/// @notice Sets the contract as active or inactive. | ||
/// @dev Only the owner can change the active state. | ||
function setActive(bool active) external onlyOwner { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
sweet
|
||
modifier whenActive() { | ||
if (!_active) { | ||
return; // Skip execution if not active |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
does this just fail the txn? if so, that might not work because when we toggle this to inactive, the subnet contracts will still make calls to it when somebody joins and those calls should succeed. e.g., isAllow
should just return true for everyone when the "gate" is "inactive".
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No it wont revert, it just returns without running the code in the gater function using this modifier.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
oh right, i forgot how the modifiers work 👍
@dtbuchholz can you 👍 this PR? I can't do it because I opened it originally. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
Adds a validator gater contract, follow this https://github.com/consensus-shipyard/ipc/blob/main/docs/ipc/validator-gater.md. This is more or less the same as the example contract from https://github.com/consensus-shipyard/ipc/blob/main/contracts/contracts/examples/SubnetValidatorGater.sol with foundry tooling.
Also cleans up solidity pragma and license inconsistencies.