UNPKG

@melonproject/protocol

Version:

Technology Regulated and Operated Investment Funds

29 lines (28 loc) 1.61 kB
"use strict"; 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 getRoutes_1 = require("../../hub/calls/getRoutes"); const requestInvestment_1 = require("./requestInvestment"); const approve_1 = require("../../../dependencies/token/transactions/approve"); const executeRequestFor_1 = require("./executeRequestFor"); const invest = (environment, { hubAddress, investmentAmount, requestedShares }) => __awaiter(this, void 0, void 0, function* () { const routes = yield getRoutes_1.getRoutes(environment, hubAddress); yield approve_1.approve(environment, { howMuch: investmentAmount, spender: routes.participationAddress, }); yield requestInvestment_1.requestInvestment(environment, routes.participationAddress, { investmentAmount, requestedShares, }); const result = yield executeRequestFor_1.executeRequestFor(environment, routes.participationAddress, { who: environment.wallet.address }); return result; }); exports.invest = invest;