add rinkeby settings

This commit is contained in:
Barry Gitarts 2018-12-21 15:51:49 -05:00
parent 81c001a78f
commit 2129e15eae
2 changed files with 35 additions and 0 deletions

View File

@ -104,6 +104,13 @@ module.exports = {
password: "config/testnet/password"
}
},
rinkeby: {
networkType: "rinkeby",
syncMode: "light",
account: {
password: "config/testnet/password"
}
},
// merges with the settings in default
// used with "embark run livenet" and/or "embark blockchain livenet"

View File

@ -111,6 +111,34 @@ module.exports = {
// used with "embark run testnet"
testnet: {},
rinkeby: {
dappConnection: [
'$WEB3', // uses pre existing web3 object if available (e.g in Mist)
'ws://localhost:8546',
'http://localhost:8545',
],
strategy: 'explicit',
contracts: {
LPVault: {},
LiquidPledging: {},
RecoveryVault: {},
LPFactory: {
args: {
_vaultBase: '$LPVault',
_lpBase: '$LiquidPledging',
},
},
// contracts for testing
StandardToken: {},
Kernel: {
file: "@aragon/os/contracts/kernel/Kernel.sol"
},
ACL: {
file: "@aragon/os/contracts/acl/ACL.sol"
}
}
},
// merges with the settings in default
// used with "embark run livenet"
livenet: {},