forked from magicalne/axon-polyjuice-contract-test
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhardhat.config.ts
48 lines (46 loc) · 1.33 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
import { HardhatUserConfig } from "hardhat/config";
import "@nomicfoundation/hardhat-toolbox";
const config: HardhatUserConfig = {
solidity: {
compilers: [
{
//for call code
version:"0.4.24"
},
{ // for polyjuice contracts
version: "0.6.6",
settings: {}
},
{ version: "0.7.5" },
{ version: "0.8.6" },
{ version: "0.8.7" },
{ version: "0.8.9" },
{ version: "0.8.12" },
{ version: "0.8.13" },
], overrides: {}
},
networks: {
axon_local_devnet: {
url: "http://127.0.0.1:8000",
accounts: ["0x37aa0f893d05914a4def0460c0a984d3611546cfb26924d7a7ca6e0db9950a2d"],
chainId: 1098411886,
},
axon_devnet: {
url: "http://34.216.103.183:8000/",
// 0xf386573563c3a75dbbd269fce9782620826ddac2
accounts: ["0x383fcff8683b8115e31613949be24254b4204ffbe43c227408a76334a2e3fb32"],
chainId: 1098411886,
},
axon_alphanet: {
url: "https://rpc-alphanet-axon.ckbapp.dev/",
accounts: ["0x383fcff8683b8115e31613949be24254b4204ffbe43c227408a76334a2e3fb32"],
chainId: 1098411886,
},
forcerelay_devnet: {
url: "http://54.238.73.76:8000",
accounts: ["0x383fcff8683b8115e31613949be24254b4204ffbe43c227408a76334a2e3fb32"],
chainId: 1098411886,
},
}
};
export default config;