Files
spring-boot-rest/ethereum/web3j/dev_truffle/truffle.js
2018-04-27 05:54:35 +01:00

21 lines
417 B
JavaScript

module.exports = {
contracts_build_directory: "./build/contracts",
networks: {
live: {
network_id: 1, // Ethereum public network
host: 'localhost',
port: 8545
},
testnet: {
network_id: 3, // Official Ethereum test network (Ropsten)
host: 'localhost',
port: 8545
},
development: {
host: 'localhost',
port: 8545,
network_id: '*'
}
}
}