@melonproject/protocol
Version:
Technology Regulated and Operated Investment Funds
10 lines (9 loc) • 458 B
TypeScript
import { EnhancedExecute } from '../../../../utils/solidity/transactionFactory';
import { QuantityInterface } from '@melonproject/token-math';
import { RequestInvestmentResult } from '../calls/getRequest';
export interface RequestInvestmentArgs {
investmentAmount: QuantityInterface;
requestedShares: QuantityInterface;
}
declare const requestInvestment: EnhancedExecute<RequestInvestmentArgs, RequestInvestmentResult>;
export { requestInvestment };