@melonproject/protocol
Version:
Technology Regulated and Operated Investment Funds
37 lines (36 loc) • 2.1 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 token_math_1 = require("@melonproject/token-math");
const callFactory_1 = require("../../../../utils/solidity/callFactory");
const Contracts_1 = require("../../../../Contracts");
const getToken_1 = require("../../../dependencies/token/calls/getToken");
const getRoutes_1 = require("../../hub/calls/getRoutes");
const getHub_1 = require("../../hub/calls/getHub");
const isEmptyAddress_1 = require("../../../../utils/checks/isEmptyAddress");
const prepareArgs = (_, { of }) => [of.toString()];
const postProcess = (environment, result, prepared) => __awaiter(this, void 0, void 0, function* () {
if (isEmptyAddress_1.isEmptyAddress(result.investmentAsset))
return null;
const investToken = yield getToken_1.getToken(environment, result.investmentAsset);
const hub = yield getHub_1.getHub(environment, prepared.contractAddress);
const routes = yield getRoutes_1.getRoutes(environment, hub);
const fundToken = yield getToken_1.getToken(environment, routes.sharesAddress);
return {
investmentAmount: token_math_1.createQuantity(investToken, result.investmentAmount),
requestedShares: token_math_1.createQuantity(fundToken, result.requestedShares),
timestamp: parseInt(result.timestamp, 10),
};
});
const getRequest = callFactory_1.callFactory('requests', Contracts_1.Contracts.Participation, {
postProcess,
prepareArgs,
});
exports.getRequest = getRequest;