-
Notifications
You must be signed in to change notification settings - Fork 0
/
hardhat.config.ts
74 lines (66 loc) · 1.81 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
65
66
67
68
69
70
71
72
73
74
import * as dotenv from "dotenv";
import { HardhatUserConfig, task } from "hardhat/config";
import "@nomiclabs/hardhat-etherscan";
import "@nomiclabs/hardhat-waffle";
import "@typechain/hardhat";
import "hardhat-gas-reporter";
import "solidity-coverage";
import "@nomiclabs/hardhat-ethers";
/* import "@openzeppelin/hardhat-upgrades"; */
dotenv.config();
const { //This variables must be in the .env file, in order to work (like .env.example)
NET_CHAIN_ID,
T_NET_CHAIN_ID,
B_NET_CHAIN_ID,
PRIVATE_KEY,
T_NODE_IP,
B_NODE_IP,
NODE_ENDPOINT
} = process.env;
// You need to export an object to set up your config
// Go to https://hardhat.org/config/ to learn more
const config: HardhatUserConfig = {
solidity: {
version: "0.8.21",
settings: {
optimizer: {
enabled: true,
runs: 200,
},
evmVersion: "byzantium"
}
},
networks: {
hardhat: {
//We fork Alastria blockchain in localhost, for development purposes.
chainId: Number(T_NET_CHAIN_ID),
forking: {
url: `http://${T_NODE_IP}:22000`
//blockNumber: 31616435
}
},
t_alastria: {
url: `${NODE_ENDPOINT}`, //Single URL endpoint
//url: String(NODE_ENDPOINT), //Alternative way
//url: `http://${T_NODE_IP}:22000`, //Node IP
chainId: Number(T_NET_CHAIN_ID),
gasPrice: 0,
accounts: PRIVATE_KEY !== undefined ? [PRIVATE_KEY] : []
},
b_alastria: {
url: `http://${B_NODE_IP}:8545`, //Node IP
chainId: Number(B_NET_CHAIN_ID),
gasPrice: 0,
accounts: PRIVATE_KEY !== undefined ? [PRIVATE_KEY] : []
},
ganache: {
url: `${NODE_ENDPOINT}`, //Single URL endpoint
gasPrice: 0,
accounts: PRIVATE_KEY !== undefined ? [PRIVATE_KEY] : []
}
},
mocha: {
timeout: 0
}
};
export default config;