Skip to content

Commit 5ebaaa4

Browse files
committed
Removed reference to private keys in config as we use ledgers
1 parent 1bc260e commit 5ebaaa4

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

hardhat.config.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,19 +35,19 @@ const config: HardhatUserConfig = {
3535
// Define here to easily specify private keys
3636
localhost: {
3737
url: 'http://127.0.0.1:8545',
38-
accounts: [process.env.DEPLOYER_PRIV_KEY!, process.env.WALLET_IMPL_CHANGER_PRIV_KEY!]
38+
accounts: []
3939
},
4040
devnet: {
4141
url: 'https://rpc.dev.immutable.com',
42-
accounts: [process.env.DEPLOYER_PRIV_KEY!, process.env.WALLET_IMPL_CHANGER_PRIV_KEY!]
42+
accounts: []
4343
},
4444
testnet: {
4545
url: 'https://rpc.testnet.immutable.com',
46-
accounts: [process.env.DEPLOYER_PRIV_KEY!, process.env.WALLET_IMPL_CHANGER_PRIV_KEY!]
46+
accounts: []
4747
},
4848
mainnet: {
4949
url: 'https://rpc.immutable.com',
50-
accounts: [process.env.DEPLOYER_PRIV_KEY!, process.env.WALLET_IMPL_CHANGER_PRIV_KEY!]
50+
accounts: []
5151
},
5252
},
5353
mocha: {

0 commit comments

Comments
 (0)