UNPKG

@fleupold/dex-contracts

Version:

Contracts for dFusion multi-token batch auction exchange

28 lines (27 loc) 1.37 kB
"use strict"; 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 utilities_1 = require("../../test/utilities"); const logging_1 = require("../../src/logging"); const log = logging_1.factory.getLogger("scripts.close_auction"); // Note that this script only works in local blockchains module.exports = (callback) => __awaiter(void 0, void 0, void 0, function* () { try { const BatchExchange = artifacts.require("BatchExchange"); const instance = yield BatchExchange.deployed(); yield utilities_1.closeAuction(instance, web3); log.info("Auction closed"); callback(); } catch (error) { callback(error); } });