Merge branch '000-snt-voting-dapp' of https://github.com/status-im/contracts into 000-snt-voting-dapp

This commit is contained in:
Barry Gitarts 2018-06-28 15:07:16 -04:00
commit 882dd64128
2 changed files with 33 additions and 52 deletions

View File

@ -23,6 +23,7 @@
},
"testnet": {
"enabled": true,
"proxy": false,
"networkType": "testnet",
"syncMode": "light",
"rpcHost": "localhost",
@ -34,6 +35,7 @@
},
"livenet": {
"enabled": true,
"proxy": false,
"networkType": "livenet",
"syncMode": "light",
"rpcHost": "localhost",
@ -45,6 +47,7 @@
},
"privatenet": {
"enabled": true,
"proxy": false,
"networkType": "custom",
"rpcHost": "localhost",
"rpcPort": 8545,

View File

@ -11,46 +11,28 @@
],
"gas": "auto",
"contracts": {
"ERC20Receiver": {
"deploy": false
},
"MiniMeToken": {
"deploy": false
"SafeMath": {"deploy": false},
"ERC20Receiver": { "deploy": false },
"MiniMeToken": { "deploy": false },
"DelegationProxy": { "deploy": false },
"DelegationProxyFactory": { "deploy": false },
"ProposalManager": { "deploy": false },
"TrustNetwork": { "deploy": false },
"Factory": { "deploy": false },
"Instance": { "deploy": false },
"InstanceStorage": { "deploy": false },
"UpdatableInstance": { "deploy": false },
"DelegationProxyView": { "deploy": false },
"DelegationProxyKernel": { "deploy": false },
"ProposalCuration": { "deploy": false },
"Democracy": { "deploy": false },
"TestToken": {
},
"MiniMeTokenFactory": {
"deploy": true
},
"DelegationProxy": {
"deploy": false
},
"DelegationProxyFactory": {
"deploy": false
},
"ProposalManager": {
"deploy": false
},
"TrustNetwork": {
"deploy": false,
"args": ["$DelegationProxyFactory"]
},
"Factory": {
"deploy": false
},
"Instance": {
"deploy": false
},
"InstanceStorage": {
"deploy": false
},
"UpdatableInstance": {
"deploy": false
},
"TestToken": {
"deploy": true
},
"SNT": {
"instanceOf": "MiniMeToken",
"deploy": true,
"args": [
"$MiniMeTokenFactory",
0,
@ -61,26 +43,22 @@
true
]
},
"DelegationProxyView": {
"deploy": false
"PollManager": {
"args": ["$MiniMeTokenFactory", "$SNT"]
}
}
},
"testnet":{
"contracts": {
"TestToken": { "deploy": false },
"MiniMeTokenFactory": {
"address": "0x6bfa86a71a7dbc68566d5c741f416e3009804279"
},
"DelegationProxyKernel": {
"deploy": false
},
"ProposalCuration": {
"deploy": false,
"args": ["$SNT", "$TrustNetwork"]
},
"Democracy": {
"deploy": false,
"args": [
"$SNT",
"$DelegationProxyFactory"
],
"gasLimit": 5000000
"SNT": {
"instanceOf": "MiniMeToken",
"address": "0xc55cf4b03948d7ebc8b9e8bad92643703811d162"
},
"PollManager": {
"deploy": true,
"args": ["$MiniMeTokenFactory", "$SNT"]
}
}