@melonproject/protocol
Version:
Technology Regulated and Operated Investment Funds
37 lines (36 loc) • 2.47 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 callFactory_1 = require("../../../../utils/solidity/callFactory");
const Contracts_1 = require("../../../../Contracts");
const getDenominationAsset_1 = require("./getDenominationAsset");
const token_math_1 = require("@melonproject/token-math");
const getHub_1 = require("../../hub/calls/getHub");
const getRoutes_1 = require("../../hub/calls/getRoutes");
const getToken_1 = require("../../../dependencies/token/calls/getToken");
const postProcess = (environment, result, prepared) => __awaiter(this, void 0, void 0, function* () {
const quoteToken = yield getDenominationAsset_1.getDenominationAsset(environment, prepared.contractAddress);
const hub = yield getHub_1.getHub(environment, prepared.contractAddress);
const settings = yield getRoutes_1.getRoutes(environment, hub);
const fundToken = yield getToken_1.getToken(environment, settings.sharesAddress);
const calculations = {
feesInDenominationAsset: token_math_1.createQuantity(quoteToken, result.feesInDenominationAsset),
feesInShares: token_math_1.createQuantity(fundToken, result.feesInShares),
gav: token_math_1.createQuantity(quoteToken, result.gav),
gavPerShareNetManagementFee: token_math_1.createPrice(token_math_1.createQuantity(fundToken, 1), token_math_1.createQuantity(quoteToken, result.gavPerShareNetManagementFee)),
nav: token_math_1.createQuantity(quoteToken, result.nav),
sharePrice: token_math_1.createPrice(token_math_1.createQuantity(fundToken, 1), token_math_1.createQuantity(quoteToken, result.sharePrice)),
};
return calculations;
});
const performCalculations = callFactory_1.callFactoryWithoutParams('performCalculations', Contracts_1.Contracts.Accounting, {
postProcess,
});
exports.performCalculations = performCalculations;