TypeAlias.CreateInvestOffer
type CreateInvestOffer = {
fund: string;
identity: string;
price: number;
shares: number;
type: "BUY" | "SELL";
};
Type Declaration
| Name | Type |
|---|---|
fund | string |
identity | string |
price | number |
shares | number |
type | "BUY" | "SELL" |