diff --git a/deployment-guide.md b/deployment-guide.md index d435699..5fd2262 100644 --- a/deployment-guide.md +++ b/deployment-guide.md @@ -191,7 +191,7 @@ You can deploy your contract on Ethereum Mainnet as follows: forge script script/MainnetDeploy.s.sol --rpc-url https://eth-mainnet.g.alchemy.com/v2/${ALCHEMY_API_KEY:?} --broadcast ``` - This command should output something similar to: + This command uses the RISC Zero managed RiscZeroVerifierRouter contract (see https://etherscan.io/address/0x8EaB2D97Dfce405A1692a21b3ff3A172d593D319#code.output) and should output something similar to: ```bash ... diff --git a/script/MainnetDeploy.s.sol b/script/MainnetDeploy.s.sol index cf19a78..76651d7 100644 --- a/script/MainnetDeploy.s.sol +++ b/script/MainnetDeploy.s.sol @@ -35,7 +35,7 @@ contract EvenNumberDeploy is Script { vm.startBroadcast(deployerKey); - // use the deployed RiscZeroVerifierRouter contract, + // use the RISC Zero managed RiscZeroVerifierRouter contract, // see https://etherscan.io/address/0x8EaB2D97Dfce405A1692a21b3ff3A172d593D319#code IRiscZeroVerifier verifier = IRiscZeroVerifier(0x8EaB2D97Dfce405A1692a21b3ff3A172d593D319); console2.log("Using RiscZeroVerifierRouter contract deployed at", address(verifier));