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

chore(protocol): deploy MainnetTierRouter and update RollupAddressCache #18359

Merged
merged 2 commits into from
Nov 1, 2024
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ contract RollupAddressCache is AddressCache {
return (true, 0x06a9Ab27c7e2255df1815E6CC0168d7755Feb19a);
}
if (_name == LibStrings.B_TIER_ROUTER) {
return (true, 0x2cD242BfD58E6D1810323D07b065413095c7AFd0);
return (true, 0x2Ae89453c6c79Add793db7B9d23c275b90C26065);
}
if (_name == LibStrings.B_TIER_SGX) {
return (true, 0xb0f3186FC1963f774f52ff455DC86aEdD0b31F81);
Expand Down
3 changes: 2 additions & 1 deletion packages/protocol/deployments/mainnet-contract-logs-L1.md
Original file line number Diff line number Diff line change
Expand Up @@ -230,9 +230,10 @@

#### tier_router

- impl: `0x2cD242BfD58E6D1810323D07b065413095c7AFd0`
- impl: `0x2Ae89453c6c79Add793db7B9d23c275b90C26065`
- logs:
- deployed on Oct 24, 2024 @commit`7334b1d`
- deployed on Nov 1, 2024 @commit`f4f4796`

#### tier_sgx

Expand Down
3 changes: 0 additions & 3 deletions packages/protocol/script/layer1/UpdateMainnetOntakeL1.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import "src/layer1/mainnet/multirollup/MainnetSignalService.sol";
import "src/layer1/mainnet/multirollup/MainnetBridge.sol";
import "src/layer1/mainnet/rollup/MainnetRollupAddressManager.sol";
import "src/layer1/mainnet/rollup/MainnetTaikoL1.sol";
import "src/layer1/mainnet/rollup/MainnetTierRouter.sol";
import "src/layer1/mainnet/rollup/verifiers/MainnetSgxVerifier.sol";
import "src/layer1/provers/GuardianProver.sol";
import "src/layer1/mainnet/rollup/MainnetProverSet.sol";
Expand All @@ -33,8 +32,6 @@ contract UpgradeMainnetOntakeL1 is DeployCapability {
console2.log(address(new MainnetRollupAddressManager()));
// MainnetTaikoL1
console2.log(address(new MainnetTaikoL1()));
// MainnetTierRouter
console2.log(address(new MainnetTierRouter(0x68d30f47F19c07bCCEf4Ac7FAE2Dc12FCa3e0dC9)));
// MainnetSgxVerifier
console2.log(address(new MainnetSgxVerifier()));
// GuardianProver
Expand Down