Skip to content

Commit

Permalink
fix: changes caught by Fede
Browse files Browse the repository at this point in the history
  • Loading branch information
Victor Wiebe committed Jan 6, 2020
1 parent b178216 commit c255e20
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/entities/Sto.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,13 @@ export interface Params {
* whether or not the sto has been finalized
*/
isFinalized: boolean;
/**
* whether or not pre issuance is allowed for the sto
*/
preIssueAllowed: boolean;
/**
* whether or not investments can be made on behalf of a beneficiary in the sto
*/
beneficialInvestmentsAllowed: boolean;
}

Expand Down Expand Up @@ -131,7 +137,7 @@ export abstract class Sto<P> extends Entity<P> {
protected context: Context;

/**
* Unserialize string to a Security Token object representation
* Unserialize string to a Security Token Offering object representation
*
* @param serialize - security token's serialized representation
*/
Expand Down

0 comments on commit c255e20

Please sign in to comment.