Skip to content

Commit

Permalink
feat(protocol): change guardian prover cooldown windows (#17590)
Browse files Browse the repository at this point in the history
  • Loading branch information
dantaik authored Jun 14, 2024
1 parent 1754b16 commit cc10b04
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/protocol/contracts/L1/tiers/TierProviderBase.sol
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ abstract contract TierProviderBase is ITierProvider {
verifierName: LibStrings.B_TIER_GUARDIAN_MINORITY,
validityBond: 500 ether, // TKO
contestBond: 3280 ether, // =500TKO * 6.5625
cooldownWindow: 1440, //24 hours
cooldownWindow: 240, // 4 hours
provingWindow: 2880, // 48 hours
maxBlocksToVerifyPerProof: 16
});
Expand All @@ -64,7 +64,7 @@ abstract contract TierProviderBase is ITierProvider {
verifierName: LibStrings.B_TIER_GUARDIAN,
validityBond: 0, // must be 0 for top tier
contestBond: 0, // must be 0 for top tier
cooldownWindow: 60, //1 hours
cooldownWindow: 1440, // 24 hours
provingWindow: 2880, // 48 hours
maxBlocksToVerifyPerProof: 16
});
Expand Down
2 changes: 2 additions & 0 deletions packages/protocol/deployments/hekla-contract-logs.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,8 @@
- impl: `0x750D885DCAB712bA808D66D934CF315D0D98d04c.`
- logs:
- upgraded on May 14, 2024 at commit `0ef7b8caa`
- todo:
- update tier config in Hekla and mainnet

### tierRouter

Expand Down
2 changes: 2 additions & 0 deletions packages/protocol/deployments/mainnet-contract-logs-L1.md
Original file line number Diff line number Diff line change
Expand Up @@ -227,6 +227,8 @@
- logs:
- deployed on May 1, 2024 @commit`56dddf2b6`
- deployed on May 15, 2024 @commit`cd5144255`
- todo:
- update tier config in Hekla and mainnet

#### tier_sgx

Expand Down

0 comments on commit cc10b04

Please sign in to comment.