aboutsummaryrefslogtreecommitdiffstats
path: root/packages/contracts/truffle.js
diff options
context:
space:
mode:
Diffstat (limited to 'packages/contracts/truffle.js')
-rw-r--r--packages/contracts/truffle.js28
1 files changed, 14 insertions, 14 deletions
diff --git a/packages/contracts/truffle.js b/packages/contracts/truffle.js
index c8cc80803..3f804b15c 100644
--- a/packages/contracts/truffle.js
+++ b/packages/contracts/truffle.js
@@ -1,17 +1,17 @@
module.exports = {
- networks: {
- development: {
- host: "localhost",
- port: 8545,
- network_id: "*", // Match any network id
+ networks: {
+ development: {
+ host: "localhost",
+ port: 8545,
+ network_id: "*", // Match any network id
+ },
+ kovan: {
+ host: "localhost",
+ port: 8546,
+ network_id: "42",
+ gas: 4612388,
+ },
},
- kovan: {
- host: "localhost",
- port: 8546,
- network_id: "42",
- gas: 4612388,
- },
- },
- test_directory: "transpiled/test",
- migrations_directory: "transpiled/migrations",
+ test_directory: "transpiled/test",
+ migrations_directory: "transpiled/migrations",
};