embark-area-51/test_app/config/contracts.json
Iuri Matias 1cb0644f92 Revert "update solc version"
This reverts commit d23cd753ce993b9d9542432ef7d71a4019c3f972.
2017-10-22 09:27:13 -04:00

59 lines
1.1 KiB
JSON

{
"default": {
"versions": {
"web3.js": "1.0.0-beta",
"solc": "0.4.17"
},
"deployment": {
"host": "localhost",
"port": 8545,
"type": "rpc"
},
"dappConnection": [
"$WEB3",
"http://localhost:8550",
"http://localhost:8545",
"http://localhost:8550"
],
"gas": "auto",
"contracts": {
"Ownable": {
"deploy": false
},
"SimpleStorage": {
"args": [
100
]
},
"AnotherStorage": {
"args": [
"$SimpleStorage"
]
},
"Token": {
"deploy": false,
"args": [1000]
},
"MyToken": {
"instanceOf": "Token"
},
"MyToken2": {
"instanceOf": "Token",
"args": [200]
},
"AlreadyDeployedToken": {
"address": "0xece374063fe5cc7efbaca0a498477cada94e5ad6",
"instanceOf": "Token"
}
}
},
"development": {
"contracts": {
"MyToken2": {
"instanceOf": "Token",
"args": [2000]
}
}
}
}