embark/test_apps/test_app/config/contracts.json

87 lines
1.7 KiB
JSON
Raw Normal View History

2017-02-10 00:38:02 +00:00
{
"default": {
"deployment": {
"host": "localhost",
"port": 8545,
"type": "rpc"
},
"dappConnection": [
"$WEB3",
2018-02-08 00:39:11 +00:00
"ws://localhost:8546",
"http://localhost:8550",
"http://localhost:8545",
"http://localhost:8550"
],
2017-02-10 00:38:02 +00:00
"gas": "auto",
"contracts": {
2017-07-16 18:11:37 +00:00
"Ownable": {
"deploy": false
},
2017-02-10 00:38:02 +00:00
"SimpleStorage": {
2018-02-08 00:39:11 +00:00
"fromIndex": 0,
2017-02-10 00:38:02 +00:00
"args": [
100
]
},
"AnotherStorage": {
"args": [
"$SimpleStorage"
]
2017-02-10 02:05:45 +00:00
},
"Token": {
"deploy": false,
"args": [1000]
},
"Test": {
"onDeploy": [
2018-01-05 20:10:47 +00:00
"Test.methods.changeAddress('$MyToken')"
]
},
2017-02-10 02:05:45 +00:00
"MyToken": {
"instanceOf": "Token"
},
"MyToken2": {
"instanceOf": "Token",
"args": [200]
2017-02-10 02:05:45 +00:00
},
"AlreadyDeployedToken": {
2017-10-07 19:20:51 +00:00
"address": "0xece374063fe5cc7efbaca0a498477cada94e5ad6",
2017-02-10 02:05:45 +00:00
"instanceOf": "Token"
2017-12-19 19:07:48 +00:00
},
"MyToken3": {
"instanceOf": "Tokn"
},
"ContractArgs": {
"args": {
"initialValue": 123,
"_addresses": ["$MyToken2", "$SimpleStorage"]
}
},
"SomeContract": {
"args": [
["$MyToken2", "$SimpleStorage"],
100
]
},
"SimpleStorageTest": {
"file": "./some_folder/test_contract.sol",
"args": [
1000
]
2017-02-10 00:38:02 +00:00
}
2017-12-21 16:21:36 +00:00
},
"afterDeploy": [
2018-01-05 20:10:47 +00:00
"Test.methods.changeAddress('$MyToken')",
"web3.eth.getAccounts((err, accounts) => Test.methods.changeAddress(accounts[0]))"
2017-12-21 16:21:36 +00:00
]
},
"development": {
"contracts": {
"MyToken2": {
"instanceOf": "Token",
"args": [2000]
}
}
2017-02-10 00:38:02 +00:00
}
}