This repository was archived by the owner on Jul 6, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +29
-1
lines changed
contract_wrappers/modules/sto Expand file tree Collapse file tree 3 files changed +29
-1
lines changed Original file line number Diff line number Diff line change @@ -91,6 +91,13 @@ interface GetCappedSTOLogsAsyncParams extends GetLogs {
91
91
( params : GetUnpauseLogsAsyncParams ) : Promise < LogWithDecodedArgs < CappedSTOUnpauseEventArgs > [ ] > ;
92
92
}
93
93
94
+ export namespace CappedSTOTransactionParams {
95
+ export interface ChangeAllowBeneficialInvestments extends ChangeAllowBeneficialInvestmentsParams { }
96
+ export interface Investors extends InvestorsParams { }
97
+ export interface BuyTokens extends BuyTokensParams { }
98
+ export interface BuyTokensWithPoly extends BuyTokensWithPolyParams { }
99
+ }
100
+
94
101
interface InvestorsParams extends TxParams {
95
102
investorAddress : string ;
96
103
}
Original file line number Diff line number Diff line change @@ -203,6 +203,23 @@ interface GetUSDTieredSTOLogsAsyncParams extends GetLogs {
203
203
( params : GetUnpauseLogsAsyncParams ) : Promise < LogWithDecodedArgs < USDTieredSTOUnpauseEventArgs > [ ] > ;
204
204
}
205
205
206
+ export namespace USDTieredSTOTransactionParams {
207
+ export interface ChangeNonAccreditedLimit extends ChangeNonAccreditedLimitParams { }
208
+ export interface ModifyTimes extends ModifyTimesParams { }
209
+ export interface ModifyLimits extends ModifyLimitsParams { }
210
+ export interface ModifyOracle extends ModifyOracleParams { }
211
+ export interface ModifyFunding extends ModifyFundingParams { }
212
+ export interface ModifyAddresses extends ModifyAddressesParams { }
213
+ export interface ModifyTiers extends ModifyTiersParams { }
214
+ export interface ChangeAllowBeneficialInvestments extends ChangeAllowBeneficialInvestmentsParams { }
215
+ export interface BuyWithETH extends BuyWithETHParams { }
216
+ export interface BuyWithETHRateLimited extends BuyWithETHRateLimitedParams { }
217
+ export interface BuyWithPOLY extends BuyWithPOLYParams { }
218
+ export interface BuyWithPOLYRateLimited extends BuyWithPOLYRateLimitedParams { }
219
+ export interface BuyWithUSD extends BuyWithUSDParams { }
220
+ export interface BuyWithUSDRateLimited extends BuyWithUSDRateLimitedParams { }
221
+ }
222
+
206
223
interface TierIndexParams {
207
224
tier : number ;
208
225
}
Original file line number Diff line number Diff line change @@ -8,6 +8,8 @@ import { DividendCheckpointTransactionParams } from './contract_wrappers/modules
8
8
import { ERC20DividendCheckpointTransactionParams } from './contract_wrappers/modules/checkpoint/erc20_dividend_checkpoint_wrapper' ;
9
9
import { EtherDividendCheckpointTransactionParams } from './contract_wrappers/modules/checkpoint/ether_dividend_checkpoint_wrapper' ;
10
10
import { GeneralPermissionManagerTransactionParams } from './contract_wrappers/modules/permission_manager/general_permission_manager_wrapper' ;
11
+ import { CappedSTOTransactionParams } from './contract_wrappers/modules/sto/capped_sto_wrapper' ;
12
+ import { USDTieredSTOTransactionParams } from './contract_wrappers/modules/sto/usd_tiered_sto_wrapper' ;
11
13
12
14
export namespace TransactionParams {
13
15
export import FeatureRegistry = FeatureRegistryTransactionParams ;
@@ -17,7 +19,9 @@ export namespace TransactionParams {
17
19
export import DividendCheckpoint = DividendCheckpointTransactionParams ;
18
20
export import ERC20DividendCheckpoint = ERC20DividendCheckpointTransactionParams ;
19
21
export import EtherDividendCheckpoint = EtherDividendCheckpointTransactionParams ;
20
- export import GeneralPermissionManagerTransaction = GeneralPermissionManagerTransactionParams ;
22
+ export import GeneralPermissionManager = GeneralPermissionManagerTransactionParams ;
23
+ export import CappedSTO = CappedSTOTransactionParams ;
24
+ export import USDTieredSTO = USDTieredSTOTransactionParams ;
21
25
}
22
26
23
27
export { conversionUtils } ;
You can’t perform that action at this time.
0 commit comments