Skip to content
3 changes: 2 additions & 1 deletion chain_config.json
Original file line number Diff line number Diff line change
Expand Up @@ -1066,6 +1066,7 @@
"allowanceHolder": "0x0000000000001fF3684f28c67538d4D072C22734",
"forwardingMultiCall": "0x00000000000000CF9E3c5A26621af382fA17f24f",
"crossChainFactory": "0x00000000000000304861c3aDfb80dd5ebeC96325"
}
},
"blockscoutApi": "https://robinhoodchain.blockscout.com/api"
}
}
7 changes: 4 additions & 3 deletions script/SafeConfig.sol
Original file line number Diff line number Diff line change
Expand Up @@ -104,12 +104,12 @@ library SafeConfig {
revert(string.concat("Unrecognized chainid ", ItoA.itoa(block.chainid)));
}

uint256 internal constant upgradeSafeThreshold = 2;
uint256 internal constant upgradeSafeThreshold = 3;
uint24 internal constant upgradeSafeTimelockDelay = 5 days;

function getUpgradeSafeSigners() internal view returns (address[] memory) {
address[] memory result = new address[](4);
result[0] = 0x257619B7155d247e43c8B6d90C8c17278Ae481F0; // Will
address[] memory result = new address[](5);
result[0] = 0x203393921A2E778fCB8619470ee0Cf399b6Ab4b2; // Chris

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Confirmed

result[1] = 0x3C3a57b5CC72933E312e0b0bEBe031F72d47c30B; // Duncan
if (_isMainnet()) {
result[2] = 0x5ee2a00F8f01d099451844Af7F894f26A57FCbF2; // Amir
Expand All @@ -118,6 +118,7 @@ library SafeConfig {
result[2] = 0x9E4496adE6096b000C856219C27734F4f89A5210; // Amir
result[3] = 0x5A9d540A07a96a2bfC8a8dfd638359778C72526f; // Jacob
}
result[4] = 0xc3445Ec2E12Ba39E74922bD33559028985164bb4; // Phil

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

confirmed ✅

return result;
}

Expand Down
2 changes: 1 addition & 1 deletion sh/deploy_safeguard.sh
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ declare -r -i gas_limit
declare -a maybe_broadcast=()
declare submit_rpc
if [[ ${BROADCAST-no} = [Yy]es ]] ; then
maybe_broadcast+=(send --chain $chainid)
maybe_broadcast+=(send --timeout 300 --rpc-timeout 300 --confirmations 10 --chain $chainid)
if [[ $wallet_type = 'frame' ]] ; then
submit_rpc='http://127.0.0.1:1248'
maybe_broadcast+=(--unlocked)
Expand Down