@fleupold/dex-contracts
Version:
Contracts for dFusion multi-token batch auction exchange
37 lines (36 loc) • 1.63 kB
JavaScript
;
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
Object.defineProperty(exports, "__esModule", { value: true });
const util_1 = require("./util");
const logging_1 = require("../src/logging");
const log = logging_1.factory.getLogger("scripts.add_token");
const argv = require("yargs")
.option("tokenAddress", {
describe: "Address of the token to be added",
})
.demand(["tokenAddress"])
.help(false)
.version(false).argv;
module.exports = function (callback) {
return __awaiter(this, void 0, void 0, function* () {
try {
const [account] = yield web3.eth.getAccounts();
log.info(`Using account ${account}`);
const batchExchange = yield util_1.getBatchExchange(artifacts);
const owl = yield util_1.getOwl(artifacts);
yield util_1.addTokens([argv.tokenAddress], account, batchExchange, owl);
callback();
}
catch (error) {
callback(error);
}
});
};