Files
openzeppelin-contracts/truffle-config.js
Francisco Giordano 09dee513ed push to mainnet
2019-06-10 20:31:14 -03:00

53 lines
909 B
JavaScript

module.exports = {
networks: {
development: {
host: 'localhost',
port: 8545,
network_id: '*', // eslint-disable-line camelcase
},
coverage: {
host: 'localhost',
network_id: '*', // eslint-disable-line camelcase
port: 8555,
gas: 0xfffffffffff,
gasPrice: 0x01,
},
mainnet: {
host: 'localhost',
port: 8565,
network_id: '1',
gasPrice: 20000000000,
from: '0x6Bf917B4725aD736B33Dbd493Ad7a4B992150DAb',
},
ropsten: {
host: 'localhost',
port: 8565,
network_id: '3',
gasPrice: 2000000000,
},
rinkeby: {
host: 'localhost',
port: 8565,
network_id: '4',
gasPrice: 0,
},
kovan: {
host: 'localhost',
port: 8565,
network_id: '42',
gasPrice: 0,
},
},
compilers: {
solc: {
version: '0.5.2',
},
},
};