Skip to content

Commit

Permalink
alpha4 hardhat config
Browse files Browse the repository at this point in the history
  • Loading branch information
SurfingNerd committed Oct 21, 2024
1 parent e181050 commit f01ffc1
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ const mnemonic: string = process.env.MNEMONIC ? process.env.MNEMONIC : ethers.Mn

const chainIds = {
hardhat: 31337,
alpha2: 777012
alpha2: 777012,
alpha4: 777018,
};

const config: HardhatUserConfig = {
Expand Down Expand Up @@ -71,6 +72,14 @@ const config: HardhatUserConfig = {
browserURL: "http://185.187.170.209:4000/",
},
},
{
network: "alpha4",
chainId: 777018,
urls: {
apiURL: "http://62.171.133.46:4400/api",
browserURL: "http://62.171.133.46:4400",
},
},
],
},
contractSizer: {
Expand Down Expand Up @@ -146,6 +155,17 @@ const config: HardhatUserConfig = {
},
gasPrice: 1000000000,
},
alpha4: {
url: "http://62.171.133.46:54100",
accounts: {
mnemonic: getMnemonic(),
path: "m/44'/60'/0'/0",
initialIndex: 0,
count: 20,
passphrase: "",
},
gasPrice: 1000000000,
},
},
paths: {
artifacts: "./artifacts",
Expand Down

0 comments on commit f01ffc1

Please sign in to comment.