@melonproject/protocol
Version:
Technology Regulated and Operated Investment Funds
10 lines (9 loc) • 378 B
TypeScript
import { Environment } from '../../../../utils/environment/Environment';
declare const invest: (environment: Environment, { hubAddress, investmentAmount, requestedShares }: {
hubAddress: any;
investmentAmount: any;
requestedShares: any;
}) => Promise<{
shareQuantity: import("@melonproject/token-math/quantity/QuantityInterface").default;
}>;
export { invest };