diff options
Diffstat (limited to 'packages/contracts/truffle.js')
-rw-r--r-- | packages/contracts/truffle.js | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/packages/contracts/truffle.js b/packages/contracts/truffle.js new file mode 100644 index 000000000..c8cc80803 --- /dev/null +++ b/packages/contracts/truffle.js @@ -0,0 +1,17 @@ +module.exports = { + networks: { + development: { + host: "localhost", + port: 8545, + network_id: "*", // Match any network id + }, + kovan: { + host: "localhost", + port: 8546, + network_id: "42", + gas: 4612388, + }, + }, + test_directory: "transpiled/test", + migrations_directory: "transpiled/migrations", +}; |