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: CHANGELOG.md
+14-2Lines changed: 14 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,14 +16,26 @@ All notable changes to this project will be documented in this file.
16
16
* Added `getTokensSoldByTier` to return sold (not minted during finalisation) tokens in each tier to USDTSTO.
17
17
* Removed individual mappings for tier data removed in UDSTSTO.
18
18
19
+
## GeneralTransferManager
20
+
*`getInvestors`, `getAllInvestorsData`, `getInvestorsData` added to GTM to allow easy data queries.
21
+
*`modifyDefaults(uint64 _defaultFromTime, uint64 _defaultToTime)` added which sets a default timestamp used when `fromTime` or `toTime` are 0
22
+
* Add `address[] public investors` to record a list of all addresses that have been added to the whitelist (`getInvestors`).
23
+
* General Transfer Manager: Fix for when `allowAllWhitelistIssuances` is FALSE
24
+
* General Transfer Manager: Make GTM a Proxy based implementation to reduce deployment gas costs
25
+
* Changed the version of `GeneralTransferManagerFactory` from `1.0.0` to `2.1.0`.
26
+
19
27
## Manual Approval TransferManager
20
28
* 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.
21
-
* Changed the version of `ManualApprovalTransferManagerFactory` from `1.0.0` to `2.0.1`.
29
+
* Changed the version of `ManualApprovalTransferManagerFactory` from `1.0.0` to `2.1.0`.
22
30
* Deployed 2.0.1 `ManualApprovalTransferManagerFactory` to address 0x6af2afad53cb334e62b90ddbdcf3a086f654c298
23
31
32
+
## Dividends
33
+
* Changed the version of `ERC20DividendCheckpointFactory` & `EtherDividendCheckpointFactory` from `1.0.0` to `2.1.0`.
34
+
* Applied proxy pattern to Dividends modules
35
+
24
36
## Changed
25
37
*`getAllModulesAndPermsFromTypes()` does not take securityToken address as a parameter anymore.
letinvestorToCheck=readlineSync.question('Enter the address you want to check: ',{
379
+
case`Show investors`:
380
+
console.log('***** List of investors on whitelist *****');
381
+
displayInvestors.map(i=>console.log(i));
382
+
break;
383
+
case`Show whitelist data`:
384
+
letinvestorsToShow=readlineSync.question(`Enter the addresses of the investors you want to show (i.e: addr1,addr2,addr3) or leave empty to show them all: `,{
0 commit comments