deploy arbtest

This commit is contained in:
owen05
2021-04-05 23:12:23 +08:00
parent 5c75888e78
commit 62c085f873
7 changed files with 301 additions and 0 deletions

View File

@@ -4,6 +4,7 @@ const { HECO_CONFIG } = require("./config/heco-config");
const { KOVAN_CONFIG } = require("./config/kovan-config");
const { MBTEST_CONFIG } = require("./config/mbtest-config");
const { OKTEST_CONFIG } = require("./config/oktest-config");
const { ARBTEST_CONFIG } = require("./config/arbtest-config");
exports.GetConfig = function (network, accounts) {
var CONFIG = {}
@@ -32,6 +33,11 @@ exports.GetConfig = function (network, accounts) {
CONFIG.multiSigAddress = accounts[0]
CONFIG.defaultMaintainer = accounts[0]
break;
case "arbtest":
CONFIG = ARBTEST_CONFIG
CONFIG.multiSigAddress = accounts[0]
CONFIG.defaultMaintainer = accounts[0]
break;
}
return CONFIG
}