-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathtruffle-config.js
More file actions
23 lines (23 loc) · 849 Bytes
/
truffle-config.js
File metadata and controls
23 lines (23 loc) · 849 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
const HDWalletProvider = require("truffle-hdwallet-provider");
const fs = require("fs");
module.exports = {
networks: {
development: {
host: "127.0.0.1",
port: 8545,
network_id: "*"
},
abs_bobjacabstest_bobjacabstest_bobjacabstest: {
network_id: "*",
gas: 0,
gasPrice: 0,
provider: new HDWalletProvider(fs.readFileSync('/Users/bobjacobs/work/customers/Untitled.env', 'utf-8'), "https://bobjacfoodsafetyt20.blockchain.azure.com:3200/zpauIGYHVNni-AxLQC5ypgLs")
},
abs_foodsafetyt20_bobjacfoodsafetyt20_bobjacfoodsafetyt20: {
network_id: "*",
gas: 0,
gasPrice: 0,
provider: new HDWalletProvider(fs.readFileSync('/Users/bobjacobs/work/customers/Untitled.env', 'utf-8'), "https://bobjacfoodsafetyt20.blockchain.azure.com:3200/zpauIGYHVNni-AxLQC5ypgLs")
}
}
};