Skip to content
This repository was archived by the owner on Jul 6, 2022. It is now read-only.

Commit 24ba8cc

Browse files
author
Victor Wiebe
committed
fix: 🐛 PR review issues in comments
1 parent 5287a3b commit 24ba8cc

File tree

3 files changed

+10
-11
lines changed

3 files changed

+10
-11
lines changed

src/contract_wrappers/modules/permission_manager/general_permission_manager_wrapper.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -304,8 +304,7 @@ export default class GeneralPermissionManagerWrapper extends ModuleWrapper {
304304

305305
/**
306306
* Used to return all permission of a single or multiple module
307-
* @return address[] the address array of Modules this delegate has permission, bytes32[]
308-
* the permission array of the corresponding Modules
307+
* @return The address array of Modules this delegate has permission, the permission array of the corresponding Modules
309308
*/
310309
public getAllModulesAndPermsFromTypes = async (
311310
params: GetAllModulesAndPermsFromTypesParams,

src/contract_wrappers/modules/sto/capped_sto_wrapper.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -301,11 +301,11 @@ export default class CappedSTOWrapper extends STOWrapper {
301301

302302
/**
303303
* Return the STO details
304-
* @return Date at which offering gets start., Date at which offering ends., Number of token base units this STO will
305-
* be allowed to sell to investors., Token units a buyer gets as the rate, Amount of funds raised, Number of
306-
* individual investors this STO have., Amount of tokens get sold., Boolean value to justify whether the fund raise
307-
* type is POLY or not, i.e true for POLY., Boolean value to know the nature of the STO Whether it is pre-mint or
308-
* mint on buying type sto.
304+
* @return Date at which offering gets start, Date at which offering ends, Number of token base units this STO will
305+
* be allowed to sell to investors, Token units a buyer gets as the rate, Amount of funds raised, Number of
306+
* individual investors this STO have, Amount of tokens get sold, Boolean value to justify whether the fund raise
307+
* type is POLY or not, ie true for POLY, Boolean value to know the nature of the STO Whether it is pre-mint or
308+
* mint on buying type sto
309309
*/
310310
public getSTODetails = async (): Promise<CappedSTODetails> => {
311311
const decimals = await (await this.securityTokenContract()).decimals.callAsync();

src/contract_wrappers/modules/sto/usd_tiered_sto_wrapper.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -734,10 +734,10 @@ export default class USDTieredSTOWrapper extends STOWrapper {
734734

735735
/**
736736
* Return the STO details
737-
* @return Unixtimestamp at which offering gets start., Unixtimestamp at which offering ends., Currently active tier,
738-
* Array of Number of tokens this STO will be allowed to sell at different tiers., Array rate at which tokens are
739-
* sold at different tiers, Amount of funds raised, Number of individual investors this STO have., Amount of tokens
740-
* sold., Array of booleans to show if funding is allowed in ETH, POLY, SC respectively
737+
* @return Unixtimestamp at which offering gets start, Unixtimestamp at which offering ends, Currently active tier,
738+
* Array of Number of tokens this STO will be allowed to sell at different tiers, Array rate at which tokens are
739+
* sold at different tiers, Amount of funds raised, Number of individual investors this STO have, Amount of tokens
740+
* solo, Array of booleans to show if funding is allowed in ETH, POLY, SC respectively
741741
*/
742742
public getSTODetails = async (): Promise<USDTieredSTOData> => {
743743
const result = await (await this.contract).getSTODetails.callAsync();

0 commit comments

Comments
 (0)