TOKEN STANDARDS / RWA-3643
RWA-3643
PERMISSIONED SECURITY TOKEN
FINAL
ABSTRACT
Identity-bound tokens with on-chain compliance: eligibility checks, jurisdiction rules, and forced-transfer recovery for regulated instruments.
AT A GLANCE
INTERFACE
interface IRWA3643 is IERC20 {
/// @notice Reverts unless sender and receiver clear identity,
/// eligibility and jurisdiction checks.
function canTransfer(address from, address to, uint256 amount)
external view returns (bool ok, bytes32 reason);
/// @notice Issuer recovery for lost keys, court order, or succession.
function forcedTransfer(address from, address to, uint256 amount) external;
function identityRegistry() external view returns (address);
function complianceModule() external view returns (address);
}
REFERENCE IMPLEMENTATION
Reference implementations live in the network's open-source repository under contracts/src. Deploy with Foundry or Hardhat — the standard compiles against any EVM toolchain.