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
*`rate` is now accepted as multiplied by 10^18 to allow settting higher price than 1ETH/POLY per token.
10
11
* Indivisble tokens are now supported. When trying to buy partial tokens, allowed full units of tokens will be purchased and remaining funds will be returned.
11
12
12
13
## USDTieredSTO 2.1.0
14
+
* Added `stableCoinsRaised` function that returns amount of individual stable coin raised when address of that stable coin is passed.
15
+
* Added support for multiple stable coins in USDTSTO.
13
16
* Added `buyTokensView` and `getTokensMintedByTier` to USDTSTO.
14
17
* Added `getSTODetails` to USDTSTO.
15
18
* Added an Array of Tiers that will hold data about every tier in USDTSTO.
@@ -31,6 +34,10 @@ All notable changes to this project will be documented in this file.
31
34
* Removed `0x0` check for the `_from` address to `ManualApprovalTransferManager`. This allows for the Issuer/Transfer Agent to approve a one-off mint of tokens that otherwise would not be possible.
32
35
* Changed the version of `ManualApprovalTransferManagerFactory` from `1.0.0` to `2.1.0`.
33
36
* Deployed 2.0.1 `ManualApprovalTransferManagerFactory` to address 0x6af2afad53cb334e62b90ddbdcf3a086f654c298
37
+
* Add `getActiveApprovalsToUser()` function to access all the active approvals for a user whether user is in the `from` or in `to`.
38
+
* Add `getApprovalDetails()` to get the details of the approval corresponds to `_from` and `_to` address.
39
+
* Add feature to modify the details of the active approval using `modifyApproval()` & `modifyApprovalMulti()`.
40
+
* Add `addManualApprovalMulti()` and `revokeManualApprovalMulti()` batch function for adding and revoking the manual approval respectively.
34
41
35
42
## Dividends
36
43
* Changed the version of `ERC20DividendCheckpointFactory` & `EtherDividendCheckpointFactory` from `1.0.0` to `2.1.0`.
console.log(chalk.red(`Not enough POLY to pay registration fee. Require ${totalFee.div(10**18).toNumber()} POLY but have ${polyBalance.div(10**18).toNumber()} POLY.`));
81
+
console.log(chalk.red(`Not enough POLY to pay registration fee. Require ${totalFee.div(10**18).toNumber()} POLY but have ${polyBalance.div(10**18).toNumber()} POLY.`));
0 commit comments