Skip to content

Commit

Permalink
set verify to false for contract verification (#9716)
Browse files Browse the repository at this point in the history
  • Loading branch information
shileiwill authored Jun 23, 2023
1 parent 8062512 commit 52c55cc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/scripts/chaincli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ As the `keeper registry deploy` command executes, _two_ address are written to t

The second address, `KeeperRegistry2.0` is the address you need; in the `.env` file, set `KEEPER_REGISTRY_ADDRESS` variable to the `KeeperRegistry2.0` address.

Note that this command runs contract verification by default, if you don't want to run verification, you can use the `--verify=false` flag.
Note that this command doesn't run contract verification by default. If you want to run verification (eth, op and arb supported), config your .env and add the `--verify=true` flag in command.

If you already have keeper registry contract deployed and want to run only contract verification, you can use the following command:

Expand Down
2 changes: 1 addition & 1 deletion core/scripts/chaincli/command/keeper/registry.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ var withdrawFromRegistryCmd = &cobra.Command{
}

func init() {
deployRegistryCmd.Flags().BoolP("verify", "v", true, "Specify if contracts should be verified on Etherscan")
deployRegistryCmd.Flags().BoolP("verify", "v", false, "Specify if contracts should be verified on Etherscan")
registryCmd.AddCommand(deployRegistryCmd)
registryCmd.AddCommand(verifyRegistryCmd)
registryCmd.AddCommand(updateRegistryCmd)
Expand Down

0 comments on commit 52c55cc

Please sign in to comment.