fix contract config

This commit is contained in:
Jonathan Rainville 2019-05-08 11:11:14 -04:00
parent 81795436d7
commit 9dfeca1ed8
No known key found for this signature in database
GPG Key ID: 5F4630B759727D9C
2 changed files with 47 additions and 35 deletions

View File

@ -5,6 +5,41 @@ try {
console.dir("warning: .secret.json file not found; this is only needed to deploy to testnet or livenet etc.."); console.dir("warning: .secret.json file not found; this is only needed to deploy to testnet or livenet etc..");
} }
const rinkebyBase = {
enabled: true,
dappConnection: [
'$WEB3'
],
strategy: 'explicit',
tracking: './testnet.chains.json',
contracts: {
LPVault: {
},
LiquidPledging: {
},
RecoveryVault: {
},
LPFactory: {
args: {
_vaultBase: '$LPVault',
_lpBase: '$LiquidPledging',
}
},
// contracts for testing
StandardToken: {
},
SNT: {
// minting address: 0xEdEB948dE35C6ac414359f97329fc0b4be70d3f1
},
Kernel: {
file: "@aragon/os/contracts/kernel/Kernel.sol"
},
ACL: {
file: "@aragon/os/contracts/acl/ACL.sol"
}
}
};
module.exports = { module.exports = {
// default applies to all environments // default applies to all environments
default: { default: {
@ -115,13 +150,13 @@ module.exports = {
// used with "embark run testnet" // used with "embark run testnet"
testnet: {}, testnet: {},
rinkeby: { rinkeby: rinkebyBase,
enabled: true, rinkebyInfura: Object.assign({}, rinkebyBase, {
deployment: { deployment: {
accounts: [ accounts: [
{ {
mnemonic: secret.mnemonic, mnemonic: secret.mnemonic,
hdpath: "m/44'/1'/0'/0/", hdpath: secret.hdpath || "m/44'/1'/0'/0/",
numAddresses: "10" numAddresses: "10"
} }
], ],
@ -129,39 +164,8 @@ module.exports = {
port: false, port: false,
protocol: 'https', protocol: 'https',
type: "rpc" type: "rpc"
},
dappConnection: [
'$WEB3'
],
strategy: 'explicit',
tracking: './testnet.chains.json',
contracts: {
LPVault: {
},
LiquidPledging: {
},
RecoveryVault: {
},
LPFactory: {
args: {
_vaultBase: '$LPVault',
_lpBase: '$LiquidPledging',
}
},
// contracts for testing
StandardToken: {
},
SNT: {
// minting address: 0xEdEB948dE35C6ac414359f97329fc0b4be70d3f1
},
Kernel: {
file: "@aragon/os/contracts/kernel/Kernel.sol"
},
ACL: {
file: "@aragon/os/contracts/acl/ACL.sol"
}
} }
}, }),
// merges with the settings in default // merges with the settings in default
// used with "embark run livenet" // used with "embark run livenet"
livenet: {}, livenet: {},

View File

@ -32,6 +32,14 @@
"0xd42f3405d01b0371fa87477111523fa9cd442b42055a5ce08991d20203cf909c": { "0xd42f3405d01b0371fa87477111523fa9cd442b42055a5ce08991d20203cf909c": {
"name": "LPFactory", "name": "LPFactory",
"address": "0x968F0a788F29b5B33296C61cEB34F1c40C55e52c" "address": "0x968F0a788F29b5B33296C61cEB34F1c40C55e52c"
},
"0xeced62cc0592a267ecd3b5e79d6e952082577769c26b199299b58c98e9a2bdb8": {
"name": "Kernel",
"address": "0x49798b01e64295497624645B77004614CC5160c3"
},
"0xe16a4aaebb3197a14aa5dd3995949f3e44d274fe049caeae225d8fa6068b3ed6": {
"name": "LPFactory",
"address": "0xBEf1f7D339277Ec3F0ae3BA0b9B04334BA8C2E26"
} }
} }
} }