-
Notifications
You must be signed in to change notification settings - Fork 2
/
hardhat.config.ts
64 lines (57 loc) · 1.6 KB
/
hardhat.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
import { HardhatUserConfig } from "hardhat/config";
import "@nomicfoundation/hardhat-toolbox";
import {
HttpNetworkAccountsUserConfig,
HttpNetworkUserConfig,
} from "hardhat/types";
const accounts = (prefix: string): HttpNetworkAccountsUserConfig => {
const privkey = process.env[`${prefix}_PRIVKEY`];
if (privkey) {
return [privkey];
}
return {
mnemonic:
process.env[`${prefix}_MNEMONIC`] ||
"test test test test test test test test test test test junk",
};
};
const SUBSTRATE_DEV_SEED_PHRASE =
"bottom drive obey lake curtain smoke basket hold race lonely fit walk";
const config: HardhatUserConfig = {
solidity: {
version: "0.8.17",
settings: {
optimizer: {
enabled: true,
runs: 200,
},
evmVersion: "london",
},
},
networks: {
// Get and run the `humanode-peer` locally with `--dev` flag.
"humanode-local": {
url: "http://localhost:9933",
// Dev seed private keys.
accounts: {
mnemonic: SUBSTRATE_DEV_SEED_PHRASE,
path: "m/44'/60'/0'/0",
initialIndex: 0,
count: 2,
},
},
// https://link.humanode.io/docs/chains
"humanode-testnet5": {
chainId: 0x3a05,
url: "https://explorer-rpc-http.testnet5.stages.humanode.io",
accounts: accounts("TESTNET5"),
} satisfies HttpNetworkUserConfig,
// https://link.humanode.io/docs/chains
"humanode-mainnet": {
chainId: 5234,
url: "https://explorer-rpc-http.mainnet.stages.humanode.io",
accounts: accounts("MAINNET"),
} satisfies HttpNetworkUserConfig,
},
};
export default config;