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(protocol): add LibTiers.TIER_GUARDIAN to OptimisticTierProvider #15647

Merged
merged 1 commit into from
Feb 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion packages/protocol/contracts/L1/tiers/OptimisticTierProvider.sol
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,24 @@ contract OptimisticTierProvider is EssentialContract, ITierProvider {
});
}

if (tierId == LibTiers.TIER_GUARDIAN) {
return ITierProvider.Tier({
verifierName: "tier_guardian",
validityBond: 0, // must be 0 for top tier
contestBond: 0, // must be 0 for top tier
cooldownWindow: 24 hours,
provingWindow: 8 hours,
maxBlocksToVerifyPerProof: 4
});
}

revert TIER_NOT_FOUND();
}

function getTierIds() public pure override returns (uint16[] memory tiers) {
tiers = new uint16[](1);
tiers = new uint16[](2);
tiers[0] = LibTiers.TIER_OPTIMISTIC;
tiers[1] = LibTiers.TIER_GUARDIAN;
}

function getMinTier(uint256 rand) public pure override returns (uint16) {
Expand Down
Loading