Skip to content
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

Merged
merged 25 commits into from
Oct 23, 2024
Merged

feat: validator gater contract #19

merged 25 commits into from
Oct 23, 2024

Conversation

sanderpick
Copy link
Member

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.

@sanderpick sanderpick force-pushed the sander/validator-gater branch from 093e171 to 6ef42de Compare October 6, 2024 17:05
Signed-off-by: Sander Pick <[email protected]>
Copy link
Contributor

@JulissaDantes JulissaDantes left a 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?

@avichalp
Copy link
Member

avichalp commented Oct 8, 2024

Should ValidatorGater be upgradeable?

@JulissaDantes
Copy link
Contributor

@avichalp @sanderpick could you review this?

Copy link
Member Author

@sanderpick sanderpick left a 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
Copy link
Member Author

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;
Copy link
Member Author

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

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

very nice

Copy link
Member Author

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
Copy link
Member Author

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 {
Copy link
Member Author

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
Copy link
Member Author

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".

Copy link
Contributor

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.

Copy link
Member Author

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 👍

@sanderpick
Copy link
Member Author

@dtbuchholz can you 👍 this PR? I can't do it because I opened it originally.

Copy link
Contributor

@dtbuchholz dtbuchholz left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

@JulissaDantes JulissaDantes merged commit 2a06101 into main Oct 23, 2024
7 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants