Skip to content

Commit 6515707

Browse files
committed
chore: update
1 parent a48da20 commit 6515707

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

script/operations/update-generator/1-updateGenerator.s.sol

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ import "src/contracts/interfaces/IBaseCertificateVerifier.sol";
1414
import {stdToml} from "forge-std/StdToml.sol";
1515

1616
/**
17-
* Purpose: Update the generator on a TESTNET environment
17+
* Purpose: Update the generator on a PREPROD/TESTNET environment
1818
*/
1919
contract QueueTransferProxyAdmin is MultisigBuilder {
2020
using Env for *;
2121
using OperatorSetLib for OperatorSet;
2222
using stdToml for string;
2323

24-
string private constant TESTNET_CONFIG_PATH = "script/releases/v1.7.0-multichain/configs/testnet.toml";
24+
string private constant TESTNET_CONFIG_PATH = "script/releases/v1.7.0-v1.8.0-multichain-hourglass-combined/configs/preprod.toml";
2525

2626
function _runAsMultisig() internal virtual override prank(Env.opsMultisig()) {
2727
GeneratorParams memory generatorParams = _getGeneratorParams(TESTNET_CONFIG_PATH);
@@ -31,8 +31,8 @@ contract QueueTransferProxyAdmin is MultisigBuilder {
3131
function testScript() public virtual {
3232
// Require that the environment is a testnet environment supported by multichain
3333
require(
34-
Env._strEq(Env.env(), "testnet-sepolia") || Env._strEq(Env.env(), "testnet-base-sepolia"),
35-
"Environment must be a testnet environment"
34+
Env._strEq(Env.env(), "preprod") || Env._strEq(Env.env(), "testnet-sepolia") || Env._strEq(Env.env(), "testnet-base-sepolia"),
35+
"Environment must be a preprod/testnet environment"
3636
);
3737

3838
// Update the generator

0 commit comments

Comments
 (0)