staking-pool/config/contracts.js

44 lines
761 B
JavaScript
Raw Permalink Normal View History

2019-06-18 12:14:29 +00:00
module.exports = {
default: {
dappConnection: [
2020-03-10 14:35:27 +00:00
"$EMBARK",
"$WEB3",
2019-06-18 12:14:29 +00:00
"ws://localhost:8546",
"http://localhost:8545"
],
gas: "auto",
2019-06-18 19:56:50 +00:00
strategy: 'explicit',
2019-06-18 12:14:29 +00:00
2020-03-10 14:35:27 +00:00
deploy: {
"MiniMeToken": {"deploy": false},
"MiniMeTokenFactory": {},
2019-06-18 19:56:50 +00:00
"SNT": {
"instanceOf": "MiniMeToken",
"args": [
"$MiniMeTokenFactory",
"0x0000000000000000000000000000000000000000",
0,
"TestMiniMeToken",
18,
"STT",
true
]
},
"StakingPool": {
"args": ["$SNT"]
}
2019-06-18 12:14:29 +00:00
}
},
development: {
dappConnection: [
2020-03-10 14:35:27 +00:00
"$EMBARK",
2019-06-18 12:14:29 +00:00
"ws://localhost:8546",
"http://localhost:8545",
2020-03-10 14:35:27 +00:00
"$WEB3"
2019-06-18 12:14:29 +00:00
]
2020-03-10 14:35:27 +00:00
}
2019-06-18 12:14:29 +00:00
};