Skip to content

Commit

Permalink
add note on RISC Zero managed RiscZeroVerifierRouter
Browse files Browse the repository at this point in the history
  • Loading branch information
capossele committed Jun 17, 2024
1 parent 899731e commit 133964c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion deployment-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
...
Expand Down
2 changes: 1 addition & 1 deletion script/MainnetDeploy.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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));
Expand Down

0 comments on commit 133964c

Please sign in to comment.