poa-dapps-keys-generation/src/addresses.js

18 lines
378 B
JavaScript
Raw Normal View History

const CORE_ADDRESSES = {
2018-01-09 16:59:26 -08:00
KEYS_MANAGER_ADDRESS: "0xfc90125492e58dbfe80c0bfb6a2a759c4f703ca8",
}
const SOKOL_ADDRESSES = {
2018-01-09 16:59:26 -08:00
KEYS_MANAGER_ADDRESS: "0xD480319659AFe5044FB09e2B92d10c987044DE4B",
}
module.exports = (netId) => {
switch (netId){
case '77':
return SOKOL_ADDRESSES
case '99':
return CORE_ADDRESSES
default:
return CORE_ADDRESSES
}
2017-12-15 19:38:51 -08:00
}