You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CLI/commands/token_manager.js
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -297,7 +297,7 @@ async function mintTokens() {
297
297
letfromTime=readlineSync.questionInt('Enter the time (Unix Epoch time) when the sale lockup period ends and the investor can freely sell his tokens: ');
298
298
lettoTime=readlineSync.questionInt('Enter the time (Unix Epoch time) when the purchase lockup period ends and the investor can freely purchase tokens from others: ');
299
299
letexpiryTime=readlineSync.questionInt('Enter the time till investors KYC will be validated (after that investor need to do re-KYC): ');
300
-
letcanBuyFromSTO=readlineSync.keyInYNStrict('Is the investor a restricted investor?');
300
+
letcanBuyFromSTO=readlineSync.keyInYNStrict('Can the investor buy from security token offerings?');
Copy file name to clipboardExpand all lines: CLI/commands/transfer_manager.js
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -398,7 +398,7 @@ async function generalTransferManager() {
398
398
lettoTime=readlineSync.questionInt(`Enter the time (Unix Epoch time) when the purchase lockup period ends and the investor can freely purchase tokens from others (now = ${now}): `,{defaultInput: now});
letexpiryTime=readlineSync.questionInt(`Enter the time until the investors KYC will be valid (after this time expires, the investor must re-do KYC) (1 year from now = ${oneYearFromNow}): `,{defaultInput: oneYearFromNow});
401
-
letcanBuyFromSTO=readlineSync.keyInYNStrict('Can the investor buy from security token offerings?');
401
+
letcanBuyFromSTO=readlineSync.keyInYNStrict('Can the investor buy from security token offerings?');
0 commit comments