-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathenv.js
52 lines (50 loc) · 1.22 KB
/
env.js
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
require("dotenv").config();
const { alice, dev } = require("./scripts/sandbox/accounts");
module.exports = {
outputFile: "output.txt",
confirmationPollingTimeoutSecond: 500000,
syncInterval: 0, // 0 for tests, 5000 for deploying
confirmTimeout: 180000, // 90000 for tests, 180000 for deploying
buildDir: "build",
migrationsDir: "migrations",
contractsDir: "contracts/main",
ligoVersion: "0.35.0",
network: "development",
networks: {
development: {
rpc: "http://localhost:8732",
network_id: "*",
secretKey: alice.sk,
},
development_server: {
host: "http://136.244.96.28",
port: 8732,
network_id: "*",
secretKey: alice.pkh,
},
granadanet: {
rpc: "https://granadanet.smartpy.io",
port: 443,
network_id: "*",
secretKey: dev.sk,
},
hangzhounet: {
rpc: "https://hangzhounet.api.tez.ie/",
port: 443,
network_id: "*",
secretKey: dev.sk,
},
ithaca: {
rpc: "https://ithacanet.ecadinfra.com/",
port: 443,
network_id: "*",
secretKey: dev.sk,
},
mainnet: {
host: "https://mainnet.smartpy.io",
port: 443,
network_id: "*",
secretKey: alice.pkh,
},
},
};