2021-07-12 09:22:20 +00:00
|
|
|
module.exports = {
|
|
|
|
networks: {
|
|
|
|
// Development network is just left as truffle's default settings
|
|
|
|
ethermint: {
|
2023-03-14 05:48:42 +00:00
|
|
|
host: '127.0.0.1', // Localhost (default: none)
|
|
|
|
port: 8545, // Standard Ethereum port (default: none)
|
|
|
|
network_id: '*', // Any network (default: none)
|
|
|
|
gas: 5000000, // Gas sent with each transaction
|
|
|
|
gasPrice: 1000000000 // 1 gwei (in wei)
|
|
|
|
}
|
2021-07-12 09:22:20 +00:00
|
|
|
},
|
|
|
|
compilers: {
|
|
|
|
solc: {
|
2023-03-14 05:48:42 +00:00
|
|
|
version: '0.8.3'
|
|
|
|
}
|
|
|
|
}
|
2021-07-12 09:22:20 +00:00
|
|
|
}
|