-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.js
More file actions
35 lines (33 loc) · 800 Bytes
/
env.js
File metadata and controls
35 lines (33 loc) · 800 Bytes
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
require("dotenv").config();
const { alice, dev } = require("./scripts/sandbox/accounts");
module.exports = {
buildsDir: "builds",
migrationsDir: "migrations",
contractsDir: "contracts/main",
contractsTestDir: "contracts/tests/main",
ligoVersion: "0.40.0",
network: "development",
networks: {
development: {
rpc: "http://localhost:8732",
network_id: "*",
secretKey: alice.sk,
syncInterval: 0,
confirmTimeout: 5000,
},
ghostnet: {
rpc: "https://rpc.ghostnet.teztnets.xyz",
port: 443,
network_id: "*",
secretKey: dev.sk,
},
mainnet: {
rpc: "https://mainnet.smartpy.io",
port: 443,
network_id: "*",
secretKey: dev.sk,
syncInterval: 10000,
confirmTimeout: 120000,
},
},
};