aboutsummaryrefslogtreecommitdiffstats
path: root/packages/contracts/truffle.js
blob: 630f4cf8b10371ad986df27a42e33ba802c10bd1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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: "lib/test",
    migrations_directory: "lib/migrations",
};