Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed truffle-config file #126

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions truffle-config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
module.exports = {
networks: {
'development': {
host: "localhost",
port: 8545,
network_id: "*",
gas: 0xffffff,
gasPrice: 0x0,
},
'red-t-nodo-identidad': {
host: "63.33.206.111/rpc",
port: 80,
network_id: "*",
gas: 0xffffff,
gasPrice: 0x0,
from: "0xd65616c46a2e55957aff33e238b31bc568358e20"
}
},
compilers: {
solc: {
version: "0.4.23", // A version or constraint - Ex. "^0.5.0"
parser: "solcjs", // Leverages solc-js purely for speedy parsing
settings: {
optimizer: {
enabled: true,
runs: 200 // Optimize for how many times you intend to run the code
},
evmVersion: "byzantium" // Default: "petersburg"
}
}
}
};
96 changes: 0 additions & 96 deletions truffle.js

This file was deleted.