-
Notifications
You must be signed in to change notification settings - Fork 0
/
truffle-config.js
44 lines (43 loc) · 1016 Bytes
/
truffle-config.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
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/main",
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://testnet-tezos.giganode.io",
network_id: "*",
secret,
mnemonic,
password,
email,
type: "tezos"
},
delphinet: {
host: "https://delphinet-tezos.giganode.io",
network_id: "*",
secret,
mnemonic,
password,
email,
type: "tezos"
}
}
};