File tree Expand file tree Collapse file tree 1 file changed +11
-11
lines changed
Expand file tree Collapse file tree 1 file changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -45,28 +45,28 @@ const config: HardhatUserConfig = {
4545 chainId : 1101 ,
4646 tags : [ "allowStubs" ] ,
4747 } ,
48- rinkeby : {
48+ goerli : {
4949 url : process . env . CHAIN_API_URL || "" ,
50- chainId : 4 ,
50+ chainId : 5 ,
5151 accounts : process . env . CONTRACT_OWNER_ACCOUNT_PRIVATE_KEY
52- ? [ process . env . CONTRACT_OWNER_ACCOUNT_PRIVATE_KEY ]
52+ ? [
53+ process . env . CONTRACT_OWNER_ACCOUNT_PRIVATE_KEY ,
54+ process . env . KEEP_CONTRACT_OWNER_ACCOUNT_PRIVATE_KEY ,
55+ ]
5356 : undefined ,
5457 tags : [ "tenderly" ] ,
5558 } ,
56- ropsten : {
59+ rinkeby : {
5760 url : process . env . CHAIN_API_URL || "" ,
58- chainId : 3 ,
61+ chainId : 4 ,
5962 accounts : process . env . CONTRACT_OWNER_ACCOUNT_PRIVATE_KEY
60- ? [
61- process . env . CONTRACT_OWNER_ACCOUNT_PRIVATE_KEY ,
62- process . env . KEEP_CONTRACT_OWNER_ACCOUNT_PRIVATE_KEY ,
63- ]
63+ ? [ process . env . CONTRACT_OWNER_ACCOUNT_PRIVATE_KEY ]
6464 : undefined ,
6565 tags : [ "tenderly" ] ,
6666 } ,
67- goerli : {
67+ ropsten : {
6868 url : process . env . CHAIN_API_URL || "" ,
69- chainId : 5 ,
69+ chainId : 3 ,
7070 accounts : process . env . CONTRACT_OWNER_ACCOUNT_PRIVATE_KEY
7171 ? [
7272 process . env . CONTRACT_OWNER_ACCOUNT_PRIVATE_KEY ,
You can’t perform that action at this time.
0 commit comments