You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
748 B

const path = require('path');
const defaults = require('./constants/config/defaults');
4 years ago
const {
CHAIN_HOST, CHAIN_PORT,
} = process.env;
4 years ago
module.exports = {
4 years ago
// See <http://truffleframework.com/docs/advanced/configuration>
// to customize your Truffle configuration!
compilers: {
solc: {
version: '0.7.1',
},
4 years ago
},
contracts_build_directory: path.join(__dirname, 'build/'),
networks: {
develop: {
host: defaults.develop.chainHost,
port: defaults.develop.chainPort,
4 years ago
network_id: '*',
4 years ago
},
4 years ago
test: {
host: defaults.test.chainHost,
port: defaults.test.chainPort,
network_id: '*',
},
env: {
host: CHAIN_HOST,
port: CHAIN_PORT,
4 years ago
network_id: '*',
},
},
4 years ago
};