-
Notifications
You must be signed in to change notification settings - Fork 13
/
truffle-config.js
61 lines (59 loc) · 1.34 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
require("dotenv").config();
require("ts-node").register({
files: true,
});
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",
},
granadanet: {
host: "https://granadanet.smartpy.io",
port: 443,
network_id: "*",
secretKey: alice.sk,
type: "tezos",
},
delphinet: {
host: "https://delphinet.smartpy.io",
port: 443,
network_id: "*",
secretKey: alice.sk,
type: "tezos",
},
edonet: {
host: "https://api.tez.ie/rpc/edonet",
port: 443,
network_id: "*",
secretKey: alice.sk,
type: "tezos",
},
florence: {
host: "https://api.tez.ie/rpc/florencenet",
port: 443,
network_id: "*",
secretKey: alice.sk,
type: "tezos",
},
mainnet: {
host: "https://mainnet.smartpy.io",
port: 443,
network_id: "*",
type: "tezos",
},
zeronet: {
host: "https://zeronet.smartpy.io",
port: 443,
network_id: "*",
type: "tezos",
},
},
};