Last active
December 31, 2017 12:18
-
-
Save oryband/6396596ed19bb7a5b121c32d96b6f244 to your computer and use it in GitHub Desktop.
Kin Mobile SDK on Ethereum - truffle.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ES6 support on ES5 | |
require('babel-register'); | |
require('babel-polyfill'); | |
module.exports = { | |
networks: { | |
development: { | |
host: 'localhost', | |
port: 8545, | |
network_id: '*', // Match any network id | |
gas: 3500000 // Allow gas for initial transactions | |
} | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment