laconicd-deprecated/tests/solidity/suites/staking/truffle-config.js
0xmuralik 2bfcf3e271 Revert "fix lint js"
This reverts commit 3e22bc9316.
2023-03-14 11:26:56 +05:30

24 lines
648 B
JavaScript

module.exports = {
networks: {
// Development network is just left as truffle's default settings
ethermint: {
host: "127.0.0.1", // Localhost (default: none)
port: 8545, // Standard Ethereum port (default: none)
network_id: "*", // Any network (default: none)
gas: 7000000, // Gas sent with each transaction
gasPrice: 1000000000, // 1 gwei (in wei)
},
},
compilers: {
solc: {
version: "0.5.17", // A version or constraint - Ex. "^0.5.0".
settings: {
optimizer: {
enabled: true,
runs: 10000,
},
},
},
},
}