Last active
April 18, 2020 19:27
-
-
Save agoiabel/1868c5202e2df21abe13184c06652044 to your computer and use it in GitHub Desktop.
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
module.exports = { | |
networks: { | |
development: { | |
host: "127.0.0.1", // Localhost (default: none) | |
port: 7545, // Standard Ethereum port (default: none) | |
network_id: "*", // Any network (default: none) | |
}, | |
}, | |
// Configure your compilers | |
compilers: { | |
solc: { | |
version: "0.6.4", // Fetch exact version from solc-bin (default: truffle's version) | |
settings: { // See the solidity docs for advice about optimization and evmVersion | |
optimizer: { | |
enabled: false, | |
runs: 200 | |
}, | |
evmVersion: "byzantium" | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment