We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b178216 commit c255e20Copy full SHA for c255e20
1 file changed
src/entities/Sto.ts
@@ -84,7 +84,13 @@ export interface Params {
84
* whether or not the sto has been finalized
85
*/
86
isFinalized: boolean;
87
+ /**
88
+ * whether or not pre issuance is allowed for the sto
89
+ */
90
preIssueAllowed: boolean;
91
92
+ * whether or not investments can be made on behalf of a beneficiary in the sto
93
94
beneficialInvestmentsAllowed: boolean;
95
}
96
@@ -131,7 +137,7 @@ export abstract class Sto<P> extends Entity<P> {
131
137
protected context: Context;
132
138
133
139
/**
134
- * Unserialize string to a Security Token object representation
140
+ * Unserialize string to a Security Token Offering object representation
135
141
*
136
142
* @param serialize - security token's serialized representation
143
0 commit comments