Skip to content

Commit

Permalink
fix(evm): evm amplifier deployment fixes (#235)
Browse files Browse the repository at this point in the history
* Add devnet-amplifiers to cli utils

* Export getAmplifierKeyAddresses  from utils.js

* Update evm/cli-utils.js

* Update evm/utils.js

---------

Co-authored-by: Milap Sheth <milap@interoplabs.io>
Co-authored-by: Milap Sheth <milap.sheth2010@gmail.com>
  • Loading branch information
3 people authored May 17, 2024
1 parent fe4b089 commit d3012df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion evm/cli-utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const { Option } = require('commander');
const addBaseOptions = (program, options = {}) => {
program.addOption(
new Option('-e, --env <env>', 'environment')
.choices(['local', 'devnet', 'stagenet', 'testnet', 'mainnet'])
.choices(['local', 'devnet', 'devnet-amplifier', 'devnet-verifiers', 'stagenet', 'testnet', 'mainnet'])
.default('testnet')
.makeOptionMandatory(true)
.env('ENV'),
Expand Down

0 comments on commit d3012df

Please sign in to comment.