diff --git a/config/blockchain.js b/config/blockchain.js index ed22d42..88c3589 100644 --- a/config/blockchain.js +++ b/config/blockchain.js @@ -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" diff --git a/config/contracts.js b/config/contracts.js index df50245..0118ab1 100644 --- a/config/contracts.js +++ b/config/contracts.js @@ -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: {},