2018-11-04 19:07:02 +00:00
|
|
|
module.exports = {
|
|
|
|
// default applies to all environments
|
|
|
|
default: {
|
|
|
|
// Blockchain node to deploy the contracts
|
|
|
|
deployment: {
|
2018-11-08 22:50:49 +00:00
|
|
|
host: 'localhost', // Host of the blockchain node
|
2018-11-09 16:57:50 +00:00
|
|
|
port: 8545, // Port of the blockchain node
|
|
|
|
type: 'rpc', // Type of connection (ws or rpc),
|
2018-11-04 19:07:02 +00:00
|
|
|
// Accounts to use instead of the default account to populate your wallet
|
|
|
|
/*,accounts: [
|
|
|
|
{
|
|
|
|
privateKey: "your_private_key",
|
|
|
|
balance: "5 ether" // You can set the balance of the account in the dev environment
|
|
|
|
// Balances are in Wei, but you can specify the unit with its name
|
|
|
|
},
|
|
|
|
{
|
|
|
|
privateKeyFile: "path/to/file", // Either a keystore or a list of keys, separated by , or ;
|
|
|
|
password: "passwordForTheKeystore" // Needed to decrypt the keystore file
|
|
|
|
},
|
|
|
|
{
|
|
|
|
mnemonic: "12 word mnemonic",
|
|
|
|
addressIndex: "0", // Optionnal. The index to start getting the address
|
|
|
|
numAddresses: "1", // Optionnal. The number of addresses to get
|
|
|
|
hdpath: "m/44'/60'/0'/0/" // Optionnal. HD derivation path
|
|
|
|
}
|
|
|
|
]*/
|
|
|
|
},
|
|
|
|
// order of connections the dapp should connect to
|
|
|
|
dappConnection: [
|
2018-11-08 22:50:49 +00:00
|
|
|
'$WEB3', // uses pre existing web3 object if available (e.g in Mist)
|
|
|
|
'ws://localhost:8546',
|
|
|
|
'http://localhost:8545',
|
2018-11-04 19:07:02 +00:00
|
|
|
],
|
2018-11-07 15:00:44 +00:00
|
|
|
|
2018-11-08 22:50:49 +00:00
|
|
|
gas: 'auto',
|
|
|
|
|
|
|
|
// Strategy for the deployment of the contracts:
|
|
|
|
// - implicit will try to deploy all the contracts located inside the contracts directory
|
|
|
|
// or the directory configured for the location of the contracts. This is default one
|
|
|
|
// when not specified
|
|
|
|
// - explicit will only attempt to deploy the contracts that are explicity specified inside the
|
|
|
|
// contracts section.
|
|
|
|
strategy: 'explicit',
|
|
|
|
|
|
|
|
contracts: {},
|
2018-11-04 19:07:02 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
// default environment, merges with the settings in default
|
|
|
|
// assumed to be the intended environment by `embark run`
|
|
|
|
development: {
|
|
|
|
dappConnection: [
|
2018-11-29 21:00:51 +00:00
|
|
|
'$WEB3', // uses pre existing web3 object if available (e.g in Mist)
|
2018-11-08 22:50:49 +00:00
|
|
|
'ws://localhost:8546',
|
|
|
|
'http://localhost:8545',
|
|
|
|
],
|
2018-11-28 16:12:50 +00:00
|
|
|
strategy: 'explicit',
|
2018-11-08 22:50:49 +00:00
|
|
|
contracts: {
|
|
|
|
LPVault: {},
|
|
|
|
LiquidPledgingMock: {},
|
|
|
|
RecoveryVault: {},
|
|
|
|
LPFactory: {
|
2018-11-28 16:12:50 +00:00
|
|
|
args: ['$LPVault', '$LiquidPledgingMock']
|
2018-11-15 20:22:12 +00:00
|
|
|
// args: {
|
2018-11-28 16:12:50 +00:00
|
|
|
// _vaultBase: '$LPVault',
|
|
|
|
// _lpBase: '$LiquidPledgingMock',
|
2018-11-15 20:22:12 +00:00
|
|
|
// },
|
2018-11-08 22:50:49 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
// contracts for testing
|
|
|
|
StandardToken: {},
|
2018-11-28 16:12:50 +00:00
|
|
|
Kernel: {
|
|
|
|
file: "@aragon/os/contracts/kernel/Kernel.sol"
|
|
|
|
},
|
|
|
|
ACL: {
|
|
|
|
file: "@aragon/os/contracts/acl/ACL.sol"
|
|
|
|
}
|
2018-11-08 22:50:49 +00:00
|
|
|
},
|
2018-11-15 20:22:12 +00:00
|
|
|
|
|
|
|
// afterDeploy: [
|
|
|
|
// `console.log('we deployed here')`,
|
|
|
|
// `embark.logger.info('we deployed here')`,
|
|
|
|
// `LPFactory.methods.newLP("$accounts[0]", "$RecoveryVault").send({ gas: 7000000 })
|
|
|
|
// .then(({ events }) => {
|
|
|
|
// console.log('method ran');
|
|
|
|
// global.LiquidPledging = new web3.eth.Contract(LiquidPledgingMockAbi, events.DeployLiquidPledging.returnValues.liquidPledging);
|
|
|
|
// global.LPVault = new web3.eth.Contract(LPVaultAbi, events.DeployVault.returnValues.vault);
|
|
|
|
// StandardToken.methods.mint(accounts[1], web3.utils.toWei('1000')).send();
|
|
|
|
// StandardToken.methods.approve(global.LiquidPledging.address, '0xFFFFFFFFFFFFFFFF').send({ from: "$accounts[1]" });
|
|
|
|
// })`
|
|
|
|
// .catch(err => console.log('error', err))
|
|
|
|
// `,
|
|
|
|
// `web3.eth.getAccounts().then(accounts => {
|
|
|
|
// return LPFactory.methods.newLP(accounts[0], "$RecoveryVault").send({ gas: 7000000 })
|
|
|
|
// .then(({ events }) => {
|
|
|
|
// global.LiquidPledging = new web3.eth.Contract(LiquidPledgingMockAbi, events.DeployLiquidPledging.returnValues.liquidPledging);
|
|
|
|
// global.LPVault = new web3.eth.Contract(LPVaultAbi, events.DeployVault.returnValues.vault);
|
|
|
|
// StandardToken.methods.mint(accounts[1], web3.utils.toWei('1000')).send();
|
|
|
|
// StandardToken.methods.approve(global.LiquidPledging.address, '0xFFFFFFFFFFFFFFFF').send({ from: accounts[1] });
|
|
|
|
// });
|
|
|
|
// })
|
|
|
|
// .catch(err => console.log('error', err))
|
|
|
|
// `,
|
|
|
|
// ],
|
2018-11-04 19:07:02 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
// merges with the settings in default
|
|
|
|
// used with "embark run privatenet"
|
2018-11-08 22:50:49 +00:00
|
|
|
privatenet: {},
|
2018-11-04 19:07:02 +00:00
|
|
|
|
|
|
|
// merges with the settings in default
|
|
|
|
// used with "embark run testnet"
|
2018-11-08 22:50:49 +00:00
|
|
|
testnet: {},
|
2018-11-04 19:07:02 +00:00
|
|
|
|
|
|
|
// merges with the settings in default
|
|
|
|
// used with "embark run livenet"
|
2018-11-08 22:50:49 +00:00
|
|
|
livenet: {},
|
2018-11-04 19:07:02 +00:00
|
|
|
|
|
|
|
// you can name an environment with specific settings and then specify with
|
|
|
|
// "embark run custom_name" or "embark blockchain custom_name"
|
|
|
|
//custom_name: {
|
|
|
|
//}
|
|
|
|
};
|