-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathtruffle-config.js
More file actions
34 lines (34 loc) · 832 Bytes
/
Copy pathtruffle-config.js
File metadata and controls
34 lines (34 loc) · 832 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
const { mnemonic, secret, password, email } = require("./faucet.json");
const { alice } = require("./scripts/sandbox/accounts");
module.exports = {
// see <http://truffleframework.com/docs/advanced/configuration>
// for more details on how to specify configuration options!
contracts_directory: "./contracts",
networks: {
development: {
host: "http://localhost",
port: 8732,
network_id: "*",
secretKey: alice.sk,
type: "tezos"
},
babylonnet: {
host: "https://babylonnet.tezos.org.ua",
network_id: "*",
secret,
mnemonic,
password,
email,
type: "tezos"
},
carthagenet: {
host: "https://carthagenet.tezos.org.ua",
network_id: "*",
secret,
mnemonic,
password,
email,
type: "tezos"
}
}
};