@melonproject/protocol
Version:
Technology Regulated and Operated Investment Funds
23 lines (22 loc) • 1.52 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 Contracts_1 = require("../../../../Contracts");
const callFactory_1 = require("../../../../utils/solidity/callFactory");
const prepareArgs = (_, { assetToken, fundToken }) => {
const shareQuantity = token_math_1.createQuantity(fundToken, 1);
return [shareQuantity.quantity.toString(), assetToken.address];
};
const postProcess = (environment, result, prepared) => __awaiter(this, void 0, void 0, function* () {
return token_math_1.createPrice(token_math_1.createQuantity(prepared.params.fundToken, 1), token_math_1.createQuantity(prepared.params.assetToken, result));
});
const getShareCostInAsset = callFactory_1.callFactory('getShareCostInAsset', Contracts_1.Contracts.Accounting, { prepareArgs, postProcess });
exports.getShareCostInAsset = getShareCostInAsset;