Skip to content

4.1.1 - TREX Gateway and new modules, DvA

Compare
Choose a tag to compare
@Nakasar Nakasar released this 10 Nov 10:06
· 5 commits to main since this release
8db61c9

[4.1.1]

Breaking Changes

  • TREXFactory Constructor: Now requires the address of the Identity Factory.
    • Reason: The Identity Factory is used to deploy ONCHAINIDs for tokens.

Added

  • Compliance Modules:

    • Introduced Supply Limit Module: Restricts minting tokens beyond a specified limit.
    • Introduced Time Transfers Limits: Prevents holders from transferring tokens beyond a set limit within a specified timeframe.
    • Introduced Max Balance Module: Ensures an individual holder doesn't exceed a certain percentage of the total supply.
    • Added two exchange-specific modules:
      • Time Exchange Limits: Limits token transfers on trusted exchanges within a set timeframe.
      • Monthly Exchange Limits: Restricts the amount of tokens that can be transferred on trusted exchanges each month.
    • Introduced Transfer Fees : Collects fees from transfers (issuers determine fee rates).
  • IModule Enhancement:

    • Added a new function: function name() external pure returns (string memory _name);. This mandates all compliance modules to declare a constant variable, e.g., function name() public pure returns (string memory _name) { return "CountryRestrictModule"; }.
    • New function isPlugAndPlay: Added to the IModule interface. This function, function isPlugAndPlay() external pure returns (bool), indicates whether a compliance module can be bound without presetting. It is now mandatory for all compliance modules to declare this function.
    • New function canComplianceBind: Also added to the IModule interface. Compliance modules must implement function canComplianceBind(address _compliance) external view returns (bool), which checks if presetting is required before binding a compliance module.
  • TREXFactory Enhancements:

    • New function setIdFactory: Sets the Identity Factory responsible for deploying token ONCHAINIDs.
    • New function getIdFactory: Retrieves the address of the associated Identity Factory.
  • TREXGateway Contract:

    • Deployed as a central interface for the TREX ecosystem, facilitating various crucial operations:
      • Factory Management: Manages the Factory contract address, enabling updates and ownership transfers.
      • Public Deployment Control: Toggles the ability for public entities to deploy TREX contracts, enhancing security and flexibility.
      • Fee Management: Sets and adjusts deployment fee details, including amount, token type, and collector address, and enables or disables fee requirements.
      • Deployer Management: Adds or removes approved deployers and applies fee discounts, including batch operations for efficiency. Ensures streamlined deployment processes for TREX contracts.
      • Suite Deployment: Directly deploys TREX suites of contracts using provided token and claim details, with support for batch deployments. Incorporates fee collection and deployment status checks for each deployment, emphasizing security and compliance.
      • Status and Fee Queries: Provides functions to retrieve current public deployment status, Factory contract address, deployment fee details, and deployment fee status.
      • Fee Calculation: Dynamically calculates deployment fees for deployers, considering applicable discounts.
  • DvATransferManager Contract:

    • Introduced the DvATransferManager contract to streamline the process of internal fund transfers needing multi-party intermediate approvals.
      • Token owners define the transfer authorization criteria, including recipient approval, agent approval, and potential additional approvers.
      • Investors submit transfer requests.
      • Approvers are empowered to either sanction or reject these requests.
      • Transfers are executed only upon receiving unanimous approval from all designated approvers.

Updates

Smart Contract Enhancements

  • TREXFactory:

    • Modified the deployTREXSuite function to now auto-deploy a Token ONCHAINID if it's not already available (i.e., if the onchainid address in _tokenDetails is the zero address).
  • ModularCompliance:

    • Updated the addModule function to invoke the new isPlugAndPlay and canComplianceBind functions, ensuring compatibility checks before binding any compliance module.

Code Quality Improvements

  • Enhanced the GitHub Actions workflow by adding TypeScript linting (lint:ts) for test files, ensuring higher code quality and adherence to coding standards.
  • Executed a comprehensive linting pass on all test files, addressing and resolving any linting issues. This ensures a consistent code style and improved readability across the test suite.
  • Updated the push_checking.yml GitHub Actions workflow to include automatic TypeScript linting checks on pull requests. This addition enforces coding standards and helps maintain high-quality code submissions from all contributors.