Description:
Multi-signature wallet contract requiring multiple confirmations for transaction execution.
Blockchain: Ethereum
Source Code: View Code On The Blockchain
Solidity Source Code:
{{
"language": "Solidity",
"sources": {
"contracts/compliance/ComplianceServiceRegulated.sol": {
"content": "/**
* Copyright 2025 Securitize Inc. All rights reserved.
*
* SPDX-License-Identifier: Apache-2.0
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
pragma solidity 0.8.22;
import {ComplianceServiceWhitelisted} from "./ComplianceServiceWhitelisted.sol";
import {Math} from "@openzeppelin/contracts/utils/math/Math.sol";
import {CommonUtils} from "../utils/CommonUtils.sol";
import {IDSRegistryService} from "../registry/IDSRegistryService.sol";
import {IDSToken} from "../token/IDSToken.sol";
import {IDSComplianceConfigurationService} from "./IDSComplianceConfigurationService.sol";
import {IDSWalletManager} from "./IDSWalletManager.sol";
import {IDSLockManager} from "./IDSLockManager.sol";
library ComplianceServiceLibrary {
uint256 internal constant DS_TOKEN = 0;
uint256 internal constant REGISTRY_SERVICE = 1;
uint256 internal constant WALLET_MANAGER = 2;
uint256 internal constant COMPLIANCE_CONFIGURATION_SERVICE = 3;
uint256 internal constant LOCK_MANAGER = 4;
uint256 internal constant COMPLIANCE_SERVICE = 5;
uint256 internal constant DEPRECATED_OMNIBUS_TBE_CONTROLLER = 6; // Deprecated, kept for backward compatibility
uint256 internal constant NONE = 0;
uint256 internal constant US = 1;
uint256 internal constant EU = 2;
uint256 internal constant FORBIDDEN = 4;
uint256 internal constant JP = 8;
string internal constant TOKEN_PAUSED = "Token paused";
string internal constant NOT_ENOUGH_TOKENS = "Not enough tokens";
string internal constant VALID = "Valid";
string internal constant TOKENS_LOCKED = "Tokens locked";
string internal constant ONLY_FULL_TRANSFER = "Only full transfer";
string internal constant FLOWBACK = "Flowback";
string internal constant WALLET_NOT_IN_REGISTRY_SERVICE = "Wallet not in registry service";
string internal constant AMOUNT_OF_TOKENS_UNDER_MIN = "Amount of tokens under min";
string internal constant AMOUNT_OF_TOKENS_ABOVE_MAX = "Amount of tokens above max";
string internal constant HOLD_UP = "Under lock-up";
string internal constant DESTINATION_RESTRICTED = "Destination restricted";
string internal constant MAX_INVESTORS_IN_CATEGORY = "Max investors in category";
string internal constant ONLY_ACCREDITED = "Only accredited";
string internal constant ONLY_US_ACCREDITED = "Only us accredited";
string internal constant NOT_ENOUGH_INVESTORS = "Not enough investors";
string internal constant INVESTOR_LIQUIDATE_ONLY = "Investor liquidate only";
struct CompletePreTransferCheckArgs {
address from;
address to;
uint256 value;
uint256 fromInvestorBalance;
uint256 fromRegion;
bool isPlatformWalletTo;
}
/**
* @notice Determines if a wallet belongs to a retail investor for EU classification purposes.
* @dev WARNING: This function should ONLY be used for EU investors.
* For EU investors, retail classification is based solely on the "Qualified" attribute.
* For US investors, the correct definition of non-retail would require checking both
* !isQualifiedInvestor() AND !isAccreditedInvestor(), as both Qualified Purchasers
* and Accredited Investors are considered non-retail in US securities law.
*
* Current usage: This function is correctly used only within EU region checks
* (toRegion == EU) throughout the codebase. Do not use this function for US investors
* or other jurisdictions without proper modification.
*
* @param _services Array of service addresses
* @param _wallet Address of the wallet to check
* @return bool True if the wallet is a retail investor (not qualified), false otherwise
*/
function isRetail(address[] memory _services, address _wallet) internal view returns (bool) {
IDSRegistryService registry = IDSRegistryService(_services[REGISTRY_SERVICE]);
return !registry.isQualifiedInvestor(_wallet);
}
function isAccredited(address[] memory _services, address _wallet) internal view returns (bool) {
IDSRegistryService registry = IDSRegistryService(_services[REGISTRY_SERVICE]);
return registry.isAccreditedInvestor(_wallet);
}
function balanceOfInvestor(address[] memory _services, address _wallet) internal view returns (uint256) {
IDSRegistryService registry = IDSRegistryService(_services[REGISTRY_SERVICE]);
IDSToken token = IDSToken(_services[DS_TOKEN]);
return token.balanceOfInvestor(registry.getInvestor(_wallet));
}
function isNewInvestor(uint256 _balanceOfInvestorTo) internal pure returns (bool) {
// Return whether this investor has 0 balance
return _balanceOfInvestorTo == 0;
}
function getCountry(address[] memory _services, address _wallet) internal view returns (string memory) {
IDSRegistryService registry = IDSRegistryService(_services[REGISTRY_SERVICE]);
return registry.getCountry(registry.getInvestor(_wallet));
}
function getCountryCompliance(address[] memory _services, address _wallet) internal view returns (uint256) {
return IDSComplianceConfigurationService(_services[COMPLIANCE_CONFIGURATION_SERVICE]).getCountryCompliance(getCountry(_services, _wallet));
}
function getUSInvestorsLimit(address[] memory _services) internal view returns (uint256) {
ComplianceServiceRegulated complianceService = ComplianceServiceRegulated(_services[COMPLIANCE_SERVICE]);
IDSComplianceConfigurationService compConfService = IDSComplianceConfigurationService(_services[COMPLIANCE_CONFIGURATION_SERVICE]);
if (compConfService.getMaxUSInvestorsPercentage() == 0) {
return compConfService.getUSInvestorsLimit();
}
if (compConfService.getUSInvestorsLimit() == 0) {
return compConfService.getMaxUSInvestorsPercentage() * (complianceService.getTotalInvestorsCount()) / 100;
}
return Math.min(compConfService.getUSInvestorsLimit(), compConfService.getMaxUSInvestorsPercentage() * (complianceService.getTotalInvestorsCount()) / 100);
}
function checkHoldUp(
address[] memory _services,
address _from,
uint256 _value,
bool _isUSLockPeriod,
bool _isPlatformWalletFrom
) internal view returns (bool) {
if (!_isPlatformWalletFrom) {
ComplianceServiceRegulated complianceService = ComplianceServiceRegulated(_services[COMPLIANCE_SERVICE]);
uint256 lockPeriod;
if (_isUSLockPeriod) {
lockPeriod = IDSComplianceConfigurationService(_services[COMPLIANCE_CONFIGURATION_SERVICE]).getUSLockPeriod();
} else {
lockPeriod = IDSComplianceConfigurationService(_services[COMPLIANCE_CONFIGURATION_SERVICE]).getNonUSLockPeriod();
}
return
complianceService.getComplianceTransferableTokens(_from, block.timestamp, uint64(lockPeriod)) < _value;
}
return false;
}
function maxInvestorsInCategoryForNonAccredited(
address[] memory _services,
address _from,
uint256 _value,
uint256 fromInvestorBalance,
uint256 toInvestorBalance
) internal view returns (bool) {
uint256 nonAccreditedInvestorLimit = IDSComplianceConfigurationService(_services[COMPLIANCE_CONFIGURATION_SERVICE]).getNonAccreditedInvestorsLimit();
return
nonAccreditedInvestorLimit != 0 &&
ComplianceServiceRegulated(_services[COMPLIANCE_SERVICE]).getTotalInvestorsCount() -
ComplianceServiceRegulated(_services[COMPLIANCE_SERVICE]).getAccreditedInvestorsCount()
>=
nonAccreditedInvestorLimit &&
isNewInvestor(toInvestorBalance) &&
(isAccredited(_services, _from) || fromInvestorBalance > _value);
}
function newPreTransferCheck(
address[] calldata _services,
address _from,
address _to,
uint256 _value,
uint256 _balanceFrom,
bool _paused
) public view returns (uint256 code, string memory reason) {
return doPreTransferCheckRegulated
(_services, _from, _to, _value, _balanceFrom, _paused);
}
function preTransferCheck(
address[] calldata _services,
address _from,
address _to,
uint256 _value
) public view returns (uint256 code, string memory reason) {
return doPreTransferCheckRegulated(_services, _from, _to, _value, IDSToken(_services[DS_TOKEN]).balanceOf(_from), IDSToken(_services[DS_TOKEN]).isPaused());
}
function doPreTransferCheckRegulated(
address[] calldata _services,
address _from,
address _to,
uint256 _value,
uint256 _balanceFrom,
bool _paused
) internal view returns (uint256 code, string memory reason) {
if (_balanceFrom < _value) {
return (15, NOT_ENOUGH_TOKENS);
}
uint256 fromInvestorBalance = balanceOfInvestor(_services, _from); // tokens
uint256 fromRegion = getCountryCompliance(_services, _from);
bool isPlatformWalletTo = IDSWalletManager(_services[WALLET_MANAGER]).isPlatformWallet(_to);
if (isPlatformWalletTo) {
if (
((IDSComplianceConfigurationService(_services[COMPLIANCE_CONFIGURATION_SERVICE]).getForceFullTransfer()
&& (fromRegion == US)) ||
IDSComplianceConfigurationService(_services[COMPLIANCE_CONFIGURATION_SERVICE]).getWorldWideForceFullTransfer()) &&
fromInvestorBalance > _value
) {
return (50, ONLY_FULL_TRANSFER);
}
return (0, VALID);
}
if (_paused ) {
return (10, TOKEN_PAUSED);
}
CompletePreTransferCheckArgs memory args = CompletePreTransferCheckArgs(_from, _to, _value, fromInvestorBalance, fromRegion, isPlatformWalletTo);
return completeTransferCheck(_services, args);
}
function completeTransferCheck(
address[] calldata _services,
CompletePreTransferCheckArgs memory _args
) internal view returns (uint256 code, string memory reason) {
(string memory investorFrom, string memory investorTo) = IDSRegistryService(_services[REGISTRY_SERVICE]).getInvestors(_args.from, _args.to);
if (
!CommonUtils.isEmptyString(investorFrom) && CommonUtils.isEqualString(investorFrom, investorTo)
) {
return (0, VALID);
}
if (IDSLockManager(_services[LOCK_MANAGER]).isInvestorLiquidateOnly(investorTo)) {
return (90, INVESTOR_LIQUIDATE_ONLY);
}
if (!ComplianceServiceRegulated(_services[COMPLIANCE_SERVICE]).checkWhitelisted(_args.to)) {
return (20, WALLET_NOT_IN_REGISTRY_SERVICE);
}
uint256 toRegion = getCountryCompliance(_services, _args.to);
if (toRegion == FORBIDDEN) {
return (26, DESTINATION_RESTRICTED);
}
bool isPlatformWalletFrom = IDSWalletManager(_services[WALLET_MANAGER]).isPlatformWallet(_args.from);
if (
!isPlatformWalletFrom &&
IDSLockManager(_services[LOCK_MANAGER]).getTransferableTokens(_args.from, block.timestamp) < _args.value
) {
return (16, TOKENS_LOCKED);
}
if (_args.fromRegion == US) {
if (checkHoldUp(_services, _args.from, _args.value, true, isPlatformWalletFrom)) {
return (32, HOLD_UP);
}
if (
_args.fromInvestorBalance > _args.value &&
_args.fromInvestorBalance - _args.value < IDSComplianceConfigurationService(_services[COMPLIANCE_CONFIGURATION_SERVICE]).getMinUSTokens()
) {
return (51, AMOUNT_OF_TOKENS_UNDER_MIN);
}
if (
IDSComplianceConfigurationService(_services[COMPLIANCE_CONFIGURATION_SERVICE]).getForceFullTransfer() &&
_args.fromInvestorBalance > _args.value
) {
return (50, ONLY_FULL_TRANSFER);
}
} else {
if (checkHoldUp(_services, _args.from, _args.value, false, isPlatformWalletFrom)) {
return (33, HOLD_UP);
}
if (
toRegion == US &&
!isPlatformWalletFrom &&
isBlockFlowbackEndTimeOk(IDSComplianceConfigurationService(_services[COMPLIANCE_CONFIGURATION_SERVICE]).getBlockFlowbackEndTime())
) {
return (25, FLOWBACK);
}
if (
IDSComplianceConfigurationService(_services[COMPLIANCE_CONFIGURATION_SERVICE]).getWorldWideForceFullTransfer() &&
_args.fromInvestorBalance > _args.value
) {
return (50, ONLY_FULL_TRANSFER);
}
}
uint256 toInvestorBalance = balanceOfInvestor(_services, _args.to);
string memory toCountry = getCountry(_services, _args.to);
if (_args.fromRegion == EU) {
if (_args.fromInvestorBalance - _args.value < IDSComplianceConfigurationService(_services[COMPLIANCE_CONFIGURATION_SERVICE]).getMinEUTokens() &&
_args.fromInvestorBalance > _args.value) {
return (51, AMOUNT_OF_TOKENS_UNDER_MIN);
}
}
bool isAccreditedTo = isAccredited(_services, _args.to);
if (
IDSComplianceConfigurationService(_services[COMPLIANCE_CONFIGURATION_SERVICE]).getForceAccredited() && !isAccreditedTo
) {
return (61, ONLY_ACCREDITED);
}
if (toRegion == JP) {
if (
IDSComplianceConfigurationService(_services[COMPLIANCE_CONFIGURATION_SERVICE]).getJPInvestorsLimit() != 0 &&
ComplianceServiceRegulated(_services[COMPLIANCE_SERVICE]).getJPInvestorsCount() >=
IDSComplianceConfigurationService(_services[COMPLIANCE_CONFIGURATION_SERVICE]).getJPInvestorsLimit() &&
isNewInvestor(toInvestorBalance) &&
(!CommonUtils.isEqualString(getCountry(_services, _args.from), toCountry) || (_args.fromInvestorBalance > _args.value))
) {
return (40, MAX_INVESTORS_IN_CATEGORY);
}
} else if (toRegion == EU) {
if (
isRetail(_services, _args.to) &&
ComplianceServiceRegulated(_services[COMPLIANCE_SERVICE]).getEURetailInvestorsCount(toCountry) >=
IDSComplianceConfigurationService(_services[COMPLIANCE_CONFIGURATION_SERVICE]).getEURetailInvestorsLimit() &&
isNewInvestor(toInvestorBalance) &&
(!CommonUtils.isEqualString(getCountry(_services, _args.from), toCountry) ||
(_args.fromInvestorBalance > _args.value && isRetail(_services, _args.from)))
) {
return (40, MAX_INVESTORS_IN_CATEGORY);
}
if (
toInvestorBalance + _args.value < IDSComplianceConfigurationService(_services[COMPLIANCE_CONFIGURATION_SERVICE]).getMinEUTokens()
) {
return (51, AMOUNT_OF_TOKENS_UNDER_MIN);
}
} else if (toRegion == US) {
if (
IDSComplianceConfigurationService(_services[COMPLIANCE_CONFIGURATION_SERVICE]).getForceAccreditedUS() &&
!isAccreditedTo
) {
return (62, ONLY_US_ACCREDITED);
}
uint256 usInvestorsLimit = getUSInvestorsLimit(_services);
if (
usInvestorsLimit != 0 &&
(_args.fromRegion != US || _args.fromInvestorBalance > _args.value) &&
ComplianceServiceRegulated(_services[COMPLIANCE_SERVICE]).getUSInvestorsCount() >= usInvestorsLimit &&
isNewInvestor(toInvestorBalance)
) {
return (40, MAX_INVESTORS_IN_CATEGORY);
}
if (
IDSComplianceConfigurationService(_services[COMPLIANCE_CONFIGURATION_SERVICE]).getUSAccreditedInvestorsLimit() != 0 &&
isAccreditedTo &&
ComplianceServiceRegulated(_services[COMPLIANCE_SERVICE]).getUSAccreditedInvestorsCount() >=
IDSComplianceConfigurationService(_services[COMPLIANCE_CONFIGURATION_SERVICE]).getUSAccreditedInvestorsLimit() &&
isNewInvestor(toInvestorBalance) &&
(_args.fromRegion != US || !isAccredited(_services, _args.from) || _args.fromInvestorBalance > _args.value)
) {
return (40, MAX_INVESTORS_IN_CATEGORY);
}
if (
toInvestorBalance + _args.value < IDSComplianceConfigurationService(_services[COMPLIANCE_CONFIGURATION_SERVICE]).getMinUSTokens()
) {
return (51, AMOUNT_OF_TOKENS_UNDER_MIN);
}
}
if (!isAccreditedTo) {
if (maxInvestorsInCategoryForNonAccredited(_services, _args.from, _args.value, _args.fromInvestorBalance, toInvestorBalance)) {
return (40, MAX_INVESTORS_IN_CATEGORY);
}
}
if (
IDSComplianceConfigurationService(_services[COMPLIANCE_CONFIGURATION_SERVICE]).getTotalInvestorsLimit() != 0 &&
_args.fromInvestorBalance > _args.value &&
ComplianceServiceRegulated(_services[COMPLIANCE_SERVICE]).getTotalInvestorsCount() >=
IDSComplianceConfigurationService(_services[COMPLIANCE_CONFIGURATION_SERVICE]).getTotalInvestorsLimit() &&
isNewInvestor(toInvestorBalance)
) {
return (40, MAX_INVESTORS_IN_CATEGORY);
}
if (
_args.fromInvestorBalance == _args.value &&
!isNewInvestor(toInvestorBalance) &&
ComplianceServiceRegulated(_services[COMPLIANCE_SERVICE]).getTotalInvestorsCount() <=
IDSComplianceConfigurationService(_services[COMPLIANCE_CONFIGURATION_SERVICE]).getMinimumTotalInvestors()
) {
return (71, NOT_ENOUGH_INVESTORS);
}
if (
!isPlatformWalletFrom &&
_args.fromInvestorBalance - _args.value < IDSComplianceConfigurationService(_services[COMPLIANCE_CONFIGURATION_SERVICE]).getMinimumHoldingsPerInvestor() &&
_args.fromInvestorBalance > _args.value
) {
return (51, AMOUNT_OF_TOKENS_UNDER_MIN);
}
if (
!_args.isPlatformWalletTo &&
toInvestorBalance + _args.value < IDSComplianceConfigurationService(_services[COMPLIANCE_CONFIGURATION_SERVICE]).getMinimumHoldingsPerInvestor()
) {
return (51, AMOUNT_OF_TOKENS_UNDER_MIN);
}
if (
!_args.isPlatformWalletTo &&
isMaximumHoldingsPerInvestorOk(
IDSComplianceConfigurationService(_services[COMPLIANCE_CONFIGURATION_SERVICE]).getMaximumHoldingsPerInvestor(),
toInvestorBalance, _args.value)
) {
return (52, AMOUNT_OF_TOKENS_ABOVE_MAX);
}
return (0, VALID);
}
function preIssuanceCheck(
address[] calldata _services,
address _to,
uint256 _value
) public view returns (uint256 code, string memory reason) {
ComplianceServiceRegulated complianceService = ComplianceServiceRegulated(_services[COMPLIANCE_SERVICE]);
if (!complianceService.checkWhitelisted(_to)) {
return (20, WALLET_NOT_IN_REGISTRY_SERVICE);
}
IDSComplianceConfigurationService complianceConfigurationService = IDSComplianceConfigurationService(_services[COMPLIANCE_CONFIGURATION_SERVICE]);
string memory toCountry = IDSRegistryService(_services[REGISTRY_SERVICE]).getCountry(IDSRegistryService(_services[REGISTRY_SERVICE]).getInvestor(_to));
uint256 toRegion = complianceConfigurationService.getCountryCompliance(toCountry);
if (toRegion == FORBIDDEN) {
return (26, DESTINATION_RESTRICTED);
}
if (IDSLockManager(_services[LOCK_MANAGER]).isInvestorLiquidateOnly(IDSRegistryService(_services[REGISTRY_SERVICE]).getInvestor(_to))) {
return (90, INVESTOR_LIQUIDATE_ONLY);
}
uint256 balanceOfInvestorTo = balanceOfInvestor(_services, _to);
bool isAccreditedTo = isAccredited(_services, _to);
if (
complianceConfigurationService.getForceAccredited() &&
!isAccreditedTo
) {
return (61, ONLY_ACCREDITED);
}
if (isNewInvestor(balanceOfInvestorTo)) {
// verify global non accredited limit
if (!isAccreditedTo) {
if (
complianceConfigurationService.getNonAccreditedInvestorsLimit() != 0 &&
complianceService.getTotalInvestorsCount() - complianceService.getAccreditedInvestorsCount() >=
complianceConfigurationService.getNonAccreditedInvestorsLimit()
) {
return (40, MAX_INVESTORS_IN_CATEGORY);
}
}
// verify global investors limit
if (
complianceConfigurationService.getTotalInvestorsLimit() != 0 &&
complianceService.getTotalInvestorsCount() >= complianceConfigurationService.getTotalInvestorsLimit()
) {
return (40, MAX_INVESTORS_IN_CATEGORY);
}
if (toRegion == US) {
// verify US investors limit is not exceeded
if (complianceConfigurationService.getUSInvestorsLimit() != 0 && complianceService.getUSInvestorsCount() >= complianceConfigurationService.getUSInvestorsLimit()) {
return (40, MAX_INVESTORS_IN_CATEGORY);
}
// verify accredited US limit is not exceeded
if (
complianceConfigurationService.getUSAccreditedInvestorsLimit() != 0 &&
isAccreditedTo &&
complianceService.getUSAccreditedInvestorsCount() >= complianceConfigurationService.getUSAccreditedInvestorsLimit()
) {
return (40, MAX_INVESTORS_IN_CATEGORY);
}
} else if (toRegion == EU) {
if (
isRetail(_services, _to) &&
complianceService.getEURetailInvestorsCount(getCountry(_services, _to)) >= complianceConfigurationService.getEURetailInvestorsLimit()
) {
return (40, MAX_INVESTORS_IN_CATEGORY);
}
} else if (toRegion == JP) {
if (complianceConfigurationService.getJPInvestorsLimit() != 0 && complianceService.getJPInvestorsCount() >= complianceConfigurationService.getJPInvestorsLimit()) {
return (40, MAX_INVESTORS_IN_CATEGORY);
}
}
}
bool isPlatformWallet = IDSWalletManager(_services[WALLET_MANAGER]).isPlatformWallet(_to);
if (toRegion == US) {
if (
complianceConfigurationService.getForceAccreditedUS() &&
!isAccreditedTo
) {
return (62, ONLY_US_ACCREDITED);
}
// Check regional minimum holdings requirements
if (
!isPlatformWallet &&
balanceOfInvestorTo + _value < complianceConfigurationService.getMinUSTokens()
) {
return (51, AMOUNT_OF_TOKENS_UNDER_MIN);
}
} else if (toRegion == EU) {
// Check regional minimum holdings requirements
if (
!isPlatformWallet &&
balanceOfInvestorTo + _value < complianceConfigurationService.getMinEUTokens()
) {
return (51, AMOUNT_OF_TOKENS_UNDER_MIN);
}
}
// Check global minimum holdings requirement (enforced for all regions)
if (
!isPlatformWallet &&
balanceOfInvestorTo + _value < complianceConfigurationService.getMinimumHoldingsPerInvestor()
) {
return (51, AMOUNT_OF_TOKENS_UNDER_MIN);
}
// remains in tokens because maximun holdings per investor is set in tokens
if (
!isPlatformWallet &&
isMaximumHoldingsPerInvestorOk(
complianceConfigurationService.getMaximumHoldingsPerInvestor(),
balanceOfInvestorTo,
_value)
) {
return (52, AMOUNT_OF_TOKENS_ABOVE_MAX);
}
return (0, VALID);
}
function isMaximumHoldingsPerInvestorOk(uint256 _maximumHoldingsPerInvestor, uint256 _balanceOfInvestorTo, uint256 _value) internal pure returns (bool) {
return _maximumHoldingsPerInvestor != 0 && _balanceOfInvestorTo + _value >= _maximumHoldingsPerInvestor;
}
function isBlockFlowbackEndTimeOk(uint256 _blockFlowBackEndTime) private view returns (bool){
return (_blockFlowBackEndTime == 0 || _blockFlowBackEndTime > block.timestamp);
}
}
/**
* @title Concrete compliance service for tokens with regulation
*
*/
contract ComplianceServiceRegulated is ComplianceServiceWhitelisted {
function initialize() public virtual override onlyProxy initializer {
_initialize();
}
function compareInvestorBalance(
string memory _investor,
uint256 _value,
uint256 _compareTo
) internal view returns (bool) {
return (_value != 0 && getToken().balanceOfInvestor(_investor) == _compareTo);
}
function recordTransfer(
address _from,
address _to,
uint256 _value
) internal override returns (bool) {
string memory investorFrom = getRegistryService().getInvestor(_from);
string memory investorTo = getRegistryService().getInvestor(_to);
if (compareInvestorBalance(investorTo, _value, 0)) {
adjustTotalInvestorsCounts(_to, CommonUtils.IncDec.Increase);
}
if(!CommonUtils.isEqualString(investorFrom, investorTo)) {
if (compareInvestorBalance(investorFrom, _value, _value)) {
adjustTotalInvestorsCounts(_from, CommonUtils.IncDec.Decrease);
}
}
cleanupInvestorIssuances(investorFrom);
cleanupInvestorIssuances(investorTo);
return true;
}
function recordIssuance(
address _to,
uint256 _value,
uint256 _issuanceTime
) internal override returns (bool) {
string memory investorTo = getRegistryService().getInvestor(_to);
if (compareInvestorBalance(investorTo, _value, 0)) {
adjustTotalInvestorsCounts(_to, CommonUtils.IncDec.Increase);
}
uint256 shares = getRebasingProvider().convertTokensToShares(_value);
cleanupInvestorIssuances(investorTo);
return createIssuanceInformation(investorTo, shares, _issuanceTime);
}
function recordBurn(address _who, uint256 _value) internal override returns (bool) {
string memory investor = getRegistryService().getInvestor(_who);
if (compareInvestorBalance(investor, _value, _value)) {
adjustTotalInvestorsCounts(_who, CommonUtils.IncDec.Decrease);
}
return true;
}
function recordSeize(
address _from,
address, /*_to*/
uint256 _value
) internal override returns (bool) {
return recordBurn(_from, _value);
}
function adjustInvestorCountsAfterCountryChange(
string memory _id,
string memory _country,
string memory _prevCountry
) public override onlyRegistry returns (bool) {
if (getToken().balanceOfInvestor(_id) == 0) {
return false;
}
if (bytes(_prevCountry).length > 0) {
adjustInvestorsCountsByCountry(_prevCountry, _id, CommonUtils.IncDec.Decrease);
}
adjustInvestorsCountsByCountry(_country, _id, CommonUtils.IncDec.Increase);
return true;
}
function adjustTotalInvestorsCounts(address _wallet, CommonUtils.IncDec _increase) internal {
if (!getWalletManager().isSpecialWallet(_wallet)) {
if (_increase == CommonUtils.IncDec.Increase) {
totalInvestors++;
}
else {
totalInvestors--;
}
string memory id = getRegistryService().getInvestor(_wallet);
string memory country = getRegistryService().getCountry(id);
adjustInvestorsCountsByCountry(country, id, _increase);
}
}
function adjustInvestorsCountsByCountry(
string memory _country,
string memory _id,
CommonUtils.IncDec _increase
) internal {
uint256 countryCompliance = getComplianceConfigurationService().getCountryCompliance(_country);
if (getRegistryService().isAccreditedInvestor(_id)) {
if(_increase == CommonUtils.IncDec.Increase) {
accreditedInvestorsCount++;
}
else {
accreditedInvestorsCount--;
}
if (countryCompliance == US) {
if(_increase == CommonUtils.IncDec.Increase) {
usAccreditedInvestorsCount++;
}
else {
usAccreditedInvestorsCount--;
}
}
}
if (countryCompliance == US) {
if(_increase == CommonUtils.IncDec.Increase) {
usInvestorsCount++;
}
else {
usInvestorsCount--;
}
} else if (countryCompliance == EU && !getRegistryService().isQualifiedInvestor(_id)) {
if(_increase == CommonUtils.IncDec.Increase) {
euRetailInvestorsCount[_country]++;
}
else {
euRetailInvestorsCount[_country]--;
}
} else if (countryCompliance == JP) {
if(_increase == CommonUtils.IncDec.Increase) {
jpInvestorsCount++;
}
else {
jpInvestorsCount--;
}
}
}
function createIssuanceInformation(
string memory _investor,
uint256 _shares,
uint256 _issuanceTime
) internal returns (bool) {
uint256 issuancesCount = issuancesCounters[_investor];
issuancesValues[_investor][issuancesCount] = _shares;
issuancesTimestamps[_investor][issuancesCount] = _issuanceTime;
issuancesCounters[_investor] = issuancesCount + 1;
return true;
}
function preTransferCheck(
address _from,
address _to,
uint256 _value
) public view virtual override returns (uint256 code, string memory reason) {
return ComplianceServiceLibrary.preTransferCheck(getServices(), _from, _to, _value);
}
function newPreTransferCheck(
address _from,
address _to,
uint256 _value,
uint256 _balanceFrom,
bool _pausedToken
) public view virtual override returns (uint256 code, string memory reason) {
return ComplianceServiceLibrary.newPreTransferCheck(getServices(), _from, _to, _value, _balanceFrom, _pausedToken);
}
function preInternalTransferCheck(
address _from,
address _to,
uint256 _value)
public view override returns (uint256 code, string memory reason) {
return ComplianceServiceLibrary.preTransferCheck(getServices(), _from, _to, _value);
}
/**
* @notice Calculates the number of transferable tokens for a given investor at a specific time,
* taking into account issuance-level lockups (Investor Level Locks).
*
* @dev The calculation is performed as follows:
* 1. Retrieve the base transferable balance of the investor from the LockManager.
* 2. Determine the total amount of tokens from issuances that are still subject to a lockup period.
* 3. Subtract the locked tokens from the base transferable balance.
*
* @param _who Address of the investor being queried.
* @param _time Timestamp (in seconds) representing the evaluation moment. Must be greater than zero.
* @param _lockTime Duration of the lockup period in seconds.
*
* @return transferable The amount of transferable tokens
*/
function getComplianceTransferableTokens(
address _who,
uint256 _time,
uint64 _lockTime
) public view override returns (uint256) {
require(_time != 0, "Time must be greater than zero");
string memory investor = getRegistryService().getInvestor(_who);
uint256 balanceOfInvestor = getLockManager().getTransferableTokensForInvestor(investor, _time);
uint256 investorIssuancesCount = issuancesCounters[investor];
//No locks, go to base class implementation
if (investorIssuancesCount == 0) {
return balanceOfInvestor;
}
uint256 totalLockedTokens = 0;
for (uint256 i = 0; i < investorIssuancesCount; i++) {
uint256 issuanceTimestamp = issuancesTimestamps[investor][i];
if (uint256(_lockTime) > _time || issuanceTimestamp > (_time - uint256(_lockTime))) {
uint256 tokens = getRebasingProvider().convertSharesToTokens(issuancesValues[investor][i]);
totalLockedTokens = totalLockedTokens + tokens;
}
}
//there may be more locked tokens than actual tokens, so the minimum between the two
uint256 transferable = balanceOfInvestor - Math.min(totalLockedTokens, balanceOfInvestor);
return transferable;
}
function preIssuanceCheck(address _to, uint256 _value) public view override returns (uint256 code, string memory reason) {
return ComplianceServiceLibrary.preIssuanceCheck(getServices(), _to, _value);
}
function getTotalInvestorsCount() public view returns (uint256) {
return totalInvestors;
}
function getUSInvestorsCount() public view returns (uint256) {
return usInvestorsCount;
}
function getUSAccreditedInvestorsCount() public view returns (uint256) {
return usAccreditedInvestorsCount;
}
function getAccreditedInvestorsCount() public view returns (uint256) {
return accreditedInvestorsCount;
}
function getEURetailInvestorsCount(string calldata _country) public view returns (uint256) {
return euRetailInvestorsCount[_country];
}
function getJPInvestorsCount() public view returns (uint256) {
return jpInvestorsCount;
}
function setTotalInvestorsCount(uint256 _value) public onlyMaster returns (bool) {
totalInvestors = _value;
return true;
}
function setUSInvestorsCount(uint256 _value) public onlyMaster returns (bool) {
usInvestorsCount = _value;
return true;
}
function setUSAccreditedInvestorsCount(uint256 _value) public onlyMaster returns (bool) {
usAccreditedInvestorsCount = _value;
return true;
}
function setAccreditedInvestorsCount(uint256 _value) public onlyMaster returns (bool) {
accreditedInvestorsCount = _value;
return true;
}
function setEURetailInvestorsCount(string calldata _country, uint256 _value) public onlyMaster returns (bool) {
euRetailInvestorsCount[_country] = _value;
return true;
}
function setJPInvestorsCount(uint256 _value) public onlyMaster returns (bool) {
jpInvestorsCount = _value;
return true;
}
function cleanupInvestorIssuances(string memory investor) internal {
string memory country = getRegistryService().getCountry(investor);
uint256 region = getComplianceConfigurationService().getCountryCompliance(country);
uint256 lockTime;
if (region == ComplianceServiceLibrary.US) {
lockTime = getComplianceConfigurationService().getUSLockPeriod();
} else {
lockTime = getComplianceConfigurationService().getNonUSLockPeriod();
}
uint256 time = block.timestamp;
uint256 currentIssuancesCount = issuancesCounters[investor];
uint256 currentIndex = 0;
if (currentIssuancesCount == 0) {
return;
}
while (currentIndex < currentIssuancesCount) {
uint256 issuanceTimestamp = issuancesTimestamps[investor][currentIndex];
bool isNoLongerLocked = issuanceTimestamp <= (time - lockTime);
if (isNoLongerLocked) {
if (currentIndex != currentIssuancesCount - 1) {
issuancesTimestamps[investor][currentIndex] = issuancesTimestamps[investor][currentIssuancesCount - 1];
issuancesValues[investor][currentIndex] = issuancesValues[investor][currentIssuancesCount - 1];
}
delete issuancesTimestamps[investor][currentIssuancesCount - 1];
delete issuancesValues[investor][currentIssuancesCount - 1];
currentIssuancesCount--;
} else {
currentIndex++;
}
}
issuancesCounters[investor] = currentIssuancesCount;
}
function getServices() internal view returns (address[] memory services) {
services = new address[](6);
services[0] = getDSService(DS_TOKEN);
services[1] = getDSService(REGISTRY_SERVICE);
services[2] = getDSService(WALLET_MANAGER);
services[3] = getDSService(COMPLIANCE_CONFIGURATION_SERVICE);
services[4] = getDSService(LOCK_MANAGER);
services[5] = address(this);
}
}
"
},
"contracts/compliance/ComplianceServiceWhitelisted.sol": {
"content": "/**
* Copyright 2025 Securitize Inc. All rights reserved.
*
* SPDX-License-Identifier: Apache-2.0
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
pragma solidity 0.8.22;
import {ComplianceService} from "./ComplianceService.sol";
import {CommonUtils} from "../utils/CommonUtils.sol";
/**
* @title Concrete compliance service for tokens with whitelisted wallets.
*
* This simple compliance service is meant to be used for tokens that only need to be validated against an investor registry.
*/
contract ComplianceServiceWhitelisted is ComplianceService {
/// @custom:oz-upgrades-unsafe-allow constructor
constructor() {
_disableInitializers();
}
function initialize() public virtual override onlyProxy initializer {
_initialize();
}
function _initialize() internal onlyInitializing {
ComplianceService.initialize();
}
function newPreTransferCheck(
address _from,
address _to,
uint256 _value,
uint256 _balanceFrom,
bool _pausedToken
) public view virtual override returns (uint256 code, string memory reason) {
return doPreTransferCheckWhitelisted(_from, _to, _value, _balanceFrom, _pausedToken);
}
function preTransferCheck(
address _from,
address _to,
uint256 _value
) public view virtual override returns (uint256 code, string memory reason) {
return doPreTransferCheckWhitelisted(_from, _to, _value, getToken().balanceOf(_from), getToken().isPaused());
}
function checkWhitelisted(address _who) public view returns (bool) {
return getWalletManager().isPlatformWallet(_who) || !CommonUtils.isEmptyString(getRegistryService().getInvestor(_who));
}
function recordIssuance(address, uint256, uint256) internal virtual override returns (bool) {
return true;
}
function recordTransfer(address, address, uint256) internal virtual override returns (bool) {
return true;
}
function checkTransfer(address, address _to, uint256) internal view override returns (uint256, string memory) {
if (!checkWhitelisted(_to)) {
return (20, WALLET_NOT_IN_REGISTRY_SERVICE);
}
return (0, VALID);
}
function preIssuanceCheck(address _to, uint256) public view virtual override returns (uint256, string memory) {
if (!checkWhitelisted(_to)) {
return (20, WALLET_NOT_IN_REGISTRY_SERVICE);
}
return (0, VALID);
}
function recordBurn(address, uint256) internal virtual override returns (bool) {
return true;
}
function recordSeize(address, address, uint256) internal virtual override returns (bool) {
return true;
}
function doPreTransferCheckWhitelisted(
address _from,
address _to,
uint256 _value,
uint256 _balanceFrom,
bool _pausedToken
) internal view returns (uint256 code, string memory reason) {
if (_pausedToken) {
return (10, TOKEN_PAUSED);
}
if (_balanceFrom < _value) {
return (15, NOT_ENOUGH_TOKENS);
}
if (!getWalletManager().isPlatformWallet(_from) && getLockManager().getTransferableTokens(_from, block.timestamp) < _value) {
return (16, TOKENS_LOCKED);
}
return checkTransfer(_from, _to, _value);
}
function getComplianceTransferableTokens(
address _who,
uint256 _time,
uint64 /*_lockTime*/
) public view virtual override returns (uint256) {
require(_time > 0, "Time must be greater than zero");
return getLockManager().getTransferableTokens(_who, _time);
}
}
"
},
"node_modules/@openzeppelin/contracts/utils/math/Math.sol": {
"content": "// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol)
pragma solidity ^0.8.20;
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library Math {
/**
* @dev Muldiv operation overflow.
*/
error MathOverflowedMulDiv();
enum Rounding {
Floor, // Toward negative infinity
Ceil, // Toward positive infinity
Trunc, // Toward zero
Expand // Away from zero
}
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the subtraction of two unsigned integers, with an overflow flag.
*/
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*/
function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*/
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*/
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
/**
* @dev Returns the largest of two numbers.
*/
function max(uint256 a, uint256 b) internal pure returns (uint256) {
return a > b ? a : b;
}
/**
* @dev Returns the smallest of two numbers.
*/
function min(uint256 a, uint256 b) internal pure returns (uint256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two numbers. The result is rounded towards
* zero.
*/
function average(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b) / 2 can overflow.
return (a & b) + (a ^ b) / 2;
}
/**
* @dev Returns the ceiling of the division of two numbers.
*
* This differs from standard division with `/` in that it rounds towards infinity instead
* of rounding towards zero.
*/
function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
if (b == 0) {
// Guarantee the same behavior as in a regular Solidity division.
return a / b;
}
// (a + b - 1) / b can overflow on addition, so we distribute.
return a == 0 ? 0 : (a - 1) / b + 1;
}
/**
* @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or
* denominator == 0.
* @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by
* Uniswap Labs also under MIT license.
*/
function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
unchecked {
// 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
// use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
// variables such that product = prod1 * 2^256 + prod0.
uint256 prod0 = x * y; // Least significant 256 bits of the product
uint256 prod1; // Most significant 256 bits of the product
assembly {
let mm := mulmod(x, y, not(0))
prod1 := sub(sub(mm, prod0), lt(mm, prod0))
}
// Handle non-overflow cases, 256 by 256 division.
if (prod1 == 0) {
// Solidity will revert if denominator == 0, unlike the div opcode on its own.
// The surrounding unchecked block does not change this fact.
// See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
return prod0 / denominator;
}
// Make sure the result is less than 2^256. Also prevents denominator == 0.
if (denominator <= prod1) {
revert MathOverflowedMulDiv();
}
///////////////////////////////////////////////
// 512 by 256 division.
///////////////////////////////////////////////
// Make division exact by subtracting the remainder from [prod1 prod0].
uint256 remainder;
assembly {
// Compute remainder using mulmod.
remainder := mulmod(x, y, denominator)
// Subtract 256 bit number from 512 bit number.
prod1 := sub(prod1, gt(remainder, prod0))
prod0 := sub(prod0, remainder)
}
// Factor powers of two out of denominator and compute largest power of two divisor of denominator.
// Always >= 1. See https://cs.stackexchange.com/q/138556/92363.
uint256 twos = denominator & (0 - denominator);
assembly {
// Divide denominator by twos.
denominator := div(denominator, twos)
// Divide [prod1 prod0] by twos.
prod0 := div(prod0, twos)
// Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
twos := add(div(sub(0, twos), twos), 1)
}
// Shift in bits from prod1 into prod0.
prod0 |= prod1 * twos;
// Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
// that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
// four bits. That is, denominator * inv = 1 mod 2^4.
uint256 inverse = (3 * denominator) ^ 2;
// Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also
// works in modular arithmetic, doubling the correct bits in each step.
inverse *= 2 - denominator * inverse; // inverse mod 2^8
inverse *= 2 - denominator * inverse; // inverse mod 2^16
inverse *= 2 - denominator * inverse; // inverse mod 2^32
inverse *= 2 - denominator * inverse; // inverse mod 2^64
inverse *= 2 - denominator * inverse; // inverse mod 2^128
inverse *= 2 - denominator * inverse; // inverse mod 2^256
// Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
// This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
// less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
// is no longer required.
result = prod0 * inverse;
return result;
}
}
/**
* @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
*/
function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
uint256 result = mulDiv(x, y, denominator);
if (unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0) {
result += 1;
}
return result;
}
/**
* @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded
* towards zero.
*
* Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
*/
function sqrt(uint256 a) internal pure returns (uint256) {
if (a == 0) {
return 0;
}
// For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
//
// We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
// `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
//
// This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
// → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
// → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
//
// Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
uint256 result = 1 << (log2(a) >> 1);
// At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
// since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
// every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
// into the expected uint128 result.
unchecked {
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
return min(result, a / result);
}
}
/**
* @notice Calculates sqrt(a), following the selected rounding direction.
*/
function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = sqrt(a);
return result + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0);
}
}
/**
* @dev Return the log in base 2 of a positive value rounded towards zero.
* Returns 0 if given 0.
*/
function log2(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 128;
}
if (value >> 64 > 0) {
value >>= 64;
result += 64;
}
if (value >> 32 > 0) {
value >>= 32;
result += 32;
}
if (value >> 16 > 0) {
value >>= 16;
result += 16;
}
if (value >> 8 > 0) {
value >>= 8;
result += 8;
}
if (value >> 4 > 0) {
value >>= 4;
result += 4;
}
if (value >> 2 > 0) {
value >>= 2;
result += 2;
}
if (value >> 1 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 2, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log2(value);
return result + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 10 of a positive value rounded towards zero.
* Returns 0 if given 0.
*/
function log10(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >= 10 ** 64) {
value /= 10 ** 64;
result += 64;
}
if (value >= 10 ** 32) {
value /= 10 ** 32;
result += 32;
}
if (value >= 10 ** 16) {
value /= 10 ** 16;
result += 16;
}
if (value >= 10 ** 8) {
value /= 10 ** 8;
result += 8;
}
if (value >= 10 ** 4) {
value /= 10 ** 4;
result += 4;
}
if (value >= 10 ** 2) {
value /= 10 ** 2;
result += 2;
}
if (value >= 10 ** 1) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 10, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log10(value);
return result + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 256 of a positive value rounded towards zero.
* Returns 0 if given 0.
*
* Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
*/
function log256(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 16;
}
if (value >> 64 > 0) {
value >>= 64;
result += 8;
}
if (value >> 32 > 0) {
value >>= 32;
result += 4;
}
if (value >> 16 > 0) {
value >>= 16;
result += 2;
}
if (value >> 8 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 256, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log256(value);
return result + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0);
}
}
/**
* @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers.
*/
function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) {
return uint8(rounding) % 2 == 1;
}
}
"
},
"contracts/utils/CommonUtils.sol": {
"content": "/**
* Copyright 2025 Securitize Inc. All rights reserved.
*
* SPDX-License-Identifier: Apache-2.0
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
pragma solidity 0.8.22;
library CommonUtils {
enum IncDec { Increase, Decrease }
function encodeString(string memory _str) internal pure returns (bytes32) {
return keccak256(abi.encodePacked(_str));
}
function isEqualString(string memory _str1, string memory _str2) internal pure returns (bool) {
return encodeString(_str1) == encodeString(_str2);
}
function isEmptyString(string memory _str) internal pure returns (bool) {
return bytes(_str).length == 0;
}
}
"
},
"contracts/registry/IDSRegistryService.sol": {
"content": "/**
* Copyright 2025 Securitize Inc. All rights reserved.
*
* SPDX-License-Identifier: Apache-2.0
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
pragma solidity 0.8.22;
import {CommonUtils} from "../utils/CommonUtils.sol";
abstract contract IDSRegistryService {
function initialize() public virtual;
event DSRegistryServiceInvestorAdded(string investorId, address sender);
event DSRegistryServiceInvestorRemoved(string investorId, address sender);
event DSRegistryServiceInvestorCountryChanged(string investorId, string country, address sender);
event DSRegistryServiceInvestorAttributeChanged(string investorId, uint256 attributeId, uint256 value, uint256 expiry, string proofHash, address sender);
event DSRegistryServiceWalletAdded(address wallet, string investorId, address sender);
event DSRegistryServiceWalletRemoved(address wallet, string investorId, address sender);
uint8 public constant NONE = 0;
uint8 public constant KYC_APPROVED = 1;
uint8 public constant ACCREDITED = 2;
uint8 public constant QUALIFIED = 4;
uint8 public constant PROFESSIONAL = 8;
uint8 public constant PENDING = 0;
uint8 public constant APPROVED = 1;
uint8 public constant REJECTED = 2;
uint8 public constant EXCHANGE = 4;
modifier investorExists(string memory _id) {
require(isInvestor(_id), "Unknown investor");
_;
}
modifier newInvestor(string memory _id) {
require(!CommonUtils.isEmptyString(_id), "Investor id must not be empty");
require(!isInvestor(_id), "Investor already exists");
_;
}
modifier walletExists(address _address) {
require(isWallet(_address), "Unknown wallet");
_;
}
modifier newWallet(address _address) {
require(!isWallet(_address), "Wallet already exists");
_;
}
modifier walletBelongsToInvestor(address _address, string memory _id) {
require(CommonUtils.isEqualString(getInvestor(_address), _id), "Wallet does not belong to investor");
_;
}
function registerInvestor(
string calldata _id,
string calldata _collision_hash /*onlyExchangeOrAbove newInvestor(_id)*/
) public virtual returns (bool);
function updateInvestor(
string calldata _id,
string calldata _collisionHash,
string memory _country,
address[] memory _wallets,
uint8[] memory _attributeIds,
uint256[] memory _attributeValues,
uint256[] memory _attributeExpirations /*onlyIssuerOrAbove*/
) public virtual returns (bool);
function removeInvestor(
string calldata _id /*onlyExchangeOrAbove investorExists(_id)*/
) public virtual returns (bool);
function setCountry(
string calldata _id,
string memory _country /*onlyExchangeOrAbove investorExists(_id)*/
) public virtual returns (bool);
function getCountry(string memory _id) public view virtual returns (string memory);
function getCollisionHash(string calldata _id) public view virtual returns (string memory);
function setAttribute(
string calldata _id,
uint8 _attributeId,
uint256 _value,
uint256 _expiry,
string memory _proofHash /*onlyExchangeOrAbove investorExists(_id)*/
) public virtual returns (bool);
function getAttributeValue(string memory _id, uint8 _attributeId) public view virtual returns (uint256);
function getAttributeExpiry(string memory _id, uint8 _attributeId) public view virtual returns (uint256);
function getAttributeProofHash(string memory _id, uint8 _attributeId) public view virtual returns (string memory);
function addWallet(
address _address,
string memory _id /*onlyExchangeOrAbove newWallet(_address)*/
) public virtual returns (bool);
function removeWallet(
address _address,
string memory _id /*onlyExchangeOrAbove walletExists walletBelongsToInvestor(_address, _id)*/
) public virt
Submitted on: 2025-10-10 09:04:10
Comments
Log in to comment.
No comments yet.