@melonproject/protocol
Version:
Technology Regulated and Operated Investment Funds
29 lines (28 loc) • 1.87 kB
JavaScript
;
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
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) : new P(function (resolve) { resolve(result.value); }).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
Object.defineProperty(exports, "__esModule", { value: true });
const transactionFactory_1 = require("../../../../utils/solidity/transactionFactory");
const ensure_1 = require("../../../../utils/guards/ensure");
const Contracts_1 = require("../../../../Contracts");
const ensureIsManager_1 = require("../guards/ensureIsManager");
const ensureIsNotShutDown_1 = require("../guards/ensureIsNotShutDown");
const isShutDown_1 = require("../calls/isShutDown");
const guard = (environment, params) => __awaiter(this, void 0, void 0, function* () {
yield ensureIsNotShutDown_1.ensureIsNotShutDown(environment, `${params.hub}`);
yield ensureIsManager_1.ensureIsManager(environment, `${params.hub}`);
});
const prepareArgs = (_, { hub }) => __awaiter(this, void 0, void 0, function* () { return [`${hub}`]; });
const postProcess = (environment, receipt, params) => __awaiter(this, void 0, void 0, function* () {
const shutDown = yield isShutDown_1.isShutDown(environment, `${params.hub}`, null);
ensure_1.ensure(shutDown, 'Fund is not shut down');
return true;
});
const shutDownFund = transactionFactory_1.transactionFactory('shutDownFund', Contracts_1.Contracts.Version, guard, prepareArgs, postProcess);
exports.shutDownFund = shutDownFund;