embark/dapps/tests/teller-contracts/contracts.js

241 lines
7.1 KiB
JavaScript

const LICENSE_PRICE = "1000000000000000000"; // 10 * Math.pow(1, 18)
const ARB_LICENSE_PRICE = "1000000000000000000"; // 10 * Math.pow(10, 18)
const FEE_MILLI_PERCENT = "1000"; // 1 percent
const BURN_ADDRESS = "0x0000000000000000000000000000000000000002";
const MAINNET_OWNER = "0x35f7C96C392cD70ca5DBaeDB2005a946A82e8a95";
const RINKEBY_OWNER = "0xa019702a5743aFdd607c61321A90C43a8C1c69d9";
const FALLBACK_ARBITRATOR_MAINNET = "0x35f7C96C392cD70ca5DBaeDB2005a946A82e8a95";
const FALLBACK_ARBITRATOR_RINKEBY = "0xa019702a5743aFdd607c61321A90C43a8C1c69d9";
const GAS_PRICE = "5000000000"; //5 gwei
const dataMigration = require('./data.js');
module.exports = {
default: {
dappConnection: [
"$EMBARK",
"$WEB3",
"ws://localhost:8546",
"http://localhost:8545"
],
dappAutoEnable: false,
gas: "auto",
strategy: 'explicit',
deploy: {
Proxy: {
deploy: false
},
License: {
deploy: false
},
SellerLicense: {
instanceOf: "License",
args: [
"$SNT",
LICENSE_PRICE,
"$KyberFeeBurner" // TODO: replace with "$StakingPool"
]
},
SellerLicenseInstance: {
instanceOf: "Proxy",
proxyFor: 'SellerLicense',
args: ["0x", "$SellerLicense"]
},
ArbitrationLicense: {
args: [
"$SNT",
ARB_LICENSE_PRICE,
"$KyberFeeBurner" // TODO: replace with "$StakingPool"
]
},
ArbitrationLicenseInstance: {
instanceOf: "Proxy",
proxyFor: "ArbitrationLicense",
args: ["0x", "$ArbitrationLicense"]
},
UserStore: {
args: ["$SellerLicense", "$ArbitrationLicense"]
},
Medianizer: {
},
OfferStore: {
args: ["$UserStore", "$SellerLicense", "$ArbitrationLicense", BURN_ADDRESS, "$Medianizer"]
},
UserStoreInstance: {
instanceOf: "Proxy",
proxyFor: "UserStore",
args: ["0x", "$UserStore"]
},
OfferStoreInstance: {
instanceOf: "Proxy",
proxyFor: "OfferStore",
args: ["0x", "$OfferStore"]
},
Escrow: {
args: ["$accounts[0]", FALLBACK_ARBITRATOR_MAINNET, "$ArbitrationLicense", "$OfferStore", "$UserStore", "$KyberFeeBurner", FEE_MILLI_PERCENT]
},
EscrowInstance: {
instanceOf: "Proxy",
proxyFor: "Escrow",
args: ["0x", "$Escrow"]
},
"MiniMeToken": {"deploy": false},
"MiniMeTokenFactory": {},
"Fees": {
"deploy": false
},
"SNT": {
"instanceOf": "MiniMeToken",
"args": [
"$MiniMeTokenFactory",
"0x0000000000000000000000000000000000000000",
0,
"TestMiniMeToken",
18,
"STT",
true
]
},
/*
"StakingPool": {
file: 'staking-pool/contracts/StakingPool.sol',
args: [
"$SNT"
]
},
*/
KyberNetworkProxy: {},
KyberFeeBurner: { // TODO: replace BURN_ADDRESS with "$StakingPool"
args: ["$SNT", BURN_ADDRESS, "$KyberNetworkProxy", "0x0000000000000000000000000000000000000000", "300"]
}
}
},
development: {
deploy: {
StandardToken: {},
DAI: {instanceOf: "StandardToken", onDeploy: ["DAI.methods.mint('$accounts[0]', '20000000000000000000').send()"]},
MKR: {instanceOf: "StandardToken", onDeploy: ["MKR.methods.mint('$accounts[0]', '20000000000000000000').send()"]}
},
afterDeploy: dataMigration.bind(null, GAS_PRICE, LICENSE_PRICE, ARB_LICENSE_PRICE, FEE_MILLI_PERCENT, BURN_ADDRESS, null, null)
},
testnet: {
gasPrice: GAS_PRICE,
tracking: 'shared.rinkeby.json',
afterDeploy: dataMigration.bind(null, GAS_PRICE, LICENSE_PRICE, ARB_LICENSE_PRICE, FEE_MILLI_PERCENT, BURN_ADDRESS, RINKEBY_OWNER, RINKEBY_OWNER),
dappConnection: [
"$WEB3",
"https://rinkeby.infura.io/v3/c26e9ab0df094a4f99bd1ea030eb7d50"
],
deploy: {
StandardToken: {deploy: false},
DAI: {deploy: false},
MKR: {deploy: false},
KyberNetworkProxy: {
// https://developer.kyber.network/docs/Environments-Rinkeby/
address: "0xF77eC7Ed5f5B9a5aee4cfa6FFCaC6A4C315BaC76"
}
}
},
ropsten: {
gasPrice: "10000000000",
tracking: 'shared.ropsten.json',
deploy: {
SNT: {
address: "0xc55cf4b03948d7ebc8b9e8bad92643703811d162"
},
"MiniMeTokenFactory": {
deploy: false
},
KyberNetworkProxy: {
// https://developer.kyber.network/docs/Environments-Ropsten/
address: "0x818E6FECD516Ecc3849DAf6845e3EC868087B755"
}
},
afterDeploy: dataMigration.bind(null, GAS_PRICE, LICENSE_PRICE, ARB_LICENSE_PRICE, FEE_MILLI_PERCENT, BURN_ADDRESS, MAINNET_OWNER, FALLBACK_ARBITRATOR_RINKEBY),
dappConnection: ["$WEB3"]
},
// merges with the settings in default
// used with "embark run livenet"
livenet: {
gasPrice: GAS_PRICE,
tracking: 'shared.mainnet.json',
afterDeploy: dataMigration.bind(null, GAS_PRICE, LICENSE_PRICE, ARB_LICENSE_PRICE, FEE_MILLI_PERCENT, BURN_ADDRESS, MAINNET_OWNER, FALLBACK_ARBITRATOR_MAINNET),
dappConnection: [
"$WEB3",
"https://mainnet.infura.io/v3/c26e9ab0df094a4f99bd1ea030eb7d50"
],
deploy: {
StandardToken: {deploy: false},
DAI: {deploy: false},
MKR: {deploy: false},
SNT: {
address: "0x744d70fdbe2ba4cf95131626614a1763df805b9e"
},
"MiniMeTokenFactory": {deploy: false},
KyberNetworkProxy: {
// https://developer.kyber.network/docs/Environments-Mainnet/
address: "0x818E6FECD516Ecc3849DAf6845e3EC868087B755"
},
SellerLicense: {
address: "0xD0fBD1a8D663B3D31312e0cb24910be82387266A"
},
SellerLicenseInstance: {
instanceOf: "Proxy",
proxyFor: 'SellerLicense',
address: "0x18C8e4570DE4D1FA07E2ad8BE4bc0Fe8B2C2dc4d"
},
ArbitrationLicense: {
address: "0x7e571b13aeb1a6abcfc470b7d033a6838e53f440"
},
ArbitrationLicenseInstance: {
instanceOf: "Proxy",
proxyFor: 'ArbitrationLicense',
address: "0x3e7fc31b9bd5fafde828acc1fd7b7b3dd7c1d927"
},
UserStore: {
address: "0x0ab611f28165a5b694959c1454c0a9027eae536d"
},
Medianizer: {
address: "0x729D19f657BD0614b4985Cf1D82531c67569197B"
},
OfferStore: {
address: "0x5EaE5D9Fc2F38d18D9F3Bfa584700801850670D0"
},
UserStoreInstance: {
instanceOf: "Proxy",
proxyFor: "UserStore",
address: "0x61fbacebcef64e726ff5b848da5dff0c44c199f5"
},
OfferStoreInstance: {
instanceOf: "Proxy",
proxyFor: "OfferStore",
address: "0xf0dfd170aedf576717b7de14dac257c832a364e2"
},
Escrow: {
address: "0x727bF4BAed69265bBaFD39f0ab6e508F6fA118a7"
},
EscrowInstance: {
instanceOf: "Proxy",
proxyFor: 'Escrow',
address: "0xD5baC31a10b8938dd47326f01802fa23f1032AeE"
},
KyberFeeBurner: {
address: "0x7702CaaE3D8feE750c4464d80FCb14Ce05e00743"
}
}
}
};