ERC-3643 vs ERC-1400: Comparing RWA Token Standards
BiFu Research · 2026-08-13 · 8 min read
Table of contents
ERC-3643 and ERC-1400 are two real permissioned token standards used for tokenized securities. This compares their general design philosophy at a conceptual level.
ERC-3643 and ERC-1400 are both permissioned token standards proposed for the Ethereum ecosystem, and both were designed to let a token enforce holder eligibility instead of transferring freely to anyone. The core difference is design philosophy: ERC-3643 centers on a persistent, reusable on-chain identity that a token checks against at every transfer, while ERC-1400 is a broader, more modular family of proposals that adds transfer-restriction and document-referencing features on top of familiar token patterns, including support for splitting a single security into partitions or tranches. Neither standard guarantees compliance by itself — both depend on how an issuer configures, monitors, and governs the rules layered on top of the base token.
This article describes general design concepts at a conceptual level. It is not a technical specification, and it does not describe any specific issuer's implementation of either standard.
Why Token Standards Matter for RWA
A token standard is a shared set of rules that a smart contract follows so that wallets, exchanges, and other contracts know how to interact with it consistently. ERC-20, the standard behind most fungible cryptocurrency tokens, is permissionless by default — any wallet can hold and transfer it. For a tokenized security, that default does not work, because the issuer needs to control who can hold the token, as covered in more depth in permissioned vs permissionless token standards for RWA.
ERC-3643 and ERC-1400 are two of the better-known attempts to solve that problem by extending token behavior with eligibility checks, transfer restrictions, and issuer-level controls. Both are proposed Ethereum standards (Ethereum Improvement Proposals, or EIPs), and both are used as reference designs by different parts of the security-token industry. Neither is universally adopted, and implementations vary by issuer and platform.
It helps to be precise about what a standard actually promises. An EIP is a shared specification — a blueprint that different teams can implement in slightly different ways. Two products that both cite "ERC-3643" are not necessarily running identical code; they are running code that follows the same general interface and design pattern. That distinction matters when you evaluate a specific RWA product, because the standard name tells you the category of design, not the exact behavior of the deployed contract.
ERC-3643: Identity-Centered Design
ERC-3643, sometimes referenced by its earlier working name T-REX, builds around the idea of a persistent on-chain identity attached to a wallet. Rather than checking a simple list of approved addresses, the design links each eligible wallet to an identity claim — a verifiable record that the wallet's owner has passed the checks the issuer requires, such as identity verification or jurisdiction eligibility.
At a conceptual level, the pattern works like this:
- A wallet gets an associated identity contract or claim, generally issued after an onboarding or verification process.
- A compliance module attached to the token checks that identity claim, along with any other rules (jurisdiction limits, investor caps, lockups), before allowing a transfer to complete.
- Because the identity layer is separate from any single token, the same verified identity can in principle be reused across multiple tokens or products built on the same standard, reducing the need to re-verify a holder from scratch for every new asset.
- Defined agent roles can update the compliance rules, freeze a wallet, or handle recovery situations, depending on how the issuer configures the deployment.
The design intent is to make compliance rules modular and updatable without redeploying the entire token, and to make identity portable rather than tied to one specific offering.
ERC-1400: A Modular Security Token Family
ERC-1400 is better understood as a family of related proposals rather than a single self-contained standard. It was put together to extend familiar token patterns with features that securities specifically need: restricting transfers, referencing legal documents on-chain, and — notably — supporting partitioned balances, where a single token contract can represent multiple classes or tranches of the same security (for example, shares issued under different terms or subject to different lockups) within one contract instead of deploying a separate contract for each class.
At a conceptual level, the recurring pieces are:
- A transfer-restriction check, generally performed before a transfer executes, that can approve or reject the transfer and return a reason code explaining why it failed.
- Support for partitioning a token balance into sub-classes, useful for representing different share classes or vesting tranches of the same underlying security.
- A mechanism for referencing offering documents or legal agreements associated with the token, so the contract can point to the paperwork that governs it.
- Controller-level functions that allow a designated party — typically the issuer or its agent — to perform actions like a forced transfer under defined legal circumstances.
Not every proposal in the ERC-1400 family reached the same level of adoption or finalized standard status; some pieces are more widely referenced than others in practice. Treat "ERC-1400" as shorthand for this family of ideas rather than one fixed rulebook.
Comparing the Two Design Philosophies
| Dimension | ERC-3643 | ERC-1400 |
|---|---|---|
| Core organizing idea | Persistent, reusable on-chain identity checked at transfer | Modular restrictions and partitioned balances layered on token logic |
| Identity handling | Identity is a separate, potentially reusable claim tied to a wallet | Eligibility is generally checked per-token rather than through a shared identity layer |
| Multiple share classes | Typically handled by separate token deployments or configuration | Native support for partitioning one contract into multiple classes |
| Document linkage | Depends on the specific deployment | Explicit support for referencing legal documents on-chain |
| Adoption pattern | Referenced by identity-focused tokenization projects | Referenced across a broader, more varied set of security-token efforts |
| Common limitation | Effectiveness depends on how rigorously identity claims are issued and maintained | As a looser family of proposals, feature completeness varies by which pieces an issuer actually implements |
Neither column in this table should be read as "safer." Both are frameworks that an issuer must implement carefully; a weak implementation of either standard can leave gaps regardless of which one is used.
What This Means When You See a Standard Named on a Product Page
If an RWA product discloses that its token follows ERC-3643, ERC-1400, or a related standard, that tells you the token is built with permissioned, compliance-aware logic rather than open transferability. It does not, by itself, tell you how well the issuer configured the rules, who holds administrative control over the compliance module, or how the identity or eligibility data is verified and kept current — all of which matter more to your actual risk than the standard's name. The enforcement layer itself functions similarly to the role a transfer agent has always played for traditional securities; the standard is the technical mechanism, not the governance around it.
Two follow-up questions are usually more informative than the standard's name alone. First, has the specific deployment been independently audited, and is that audit report available. Second, who holds the authority to update the compliance module or the identity registry once the contract is live — a single party, a small operational team, or a broader governance process. Those answers say more about the actual risk than whether the underlying design is ERC-3643, ERC-1400, or something else entirely.
You can review how BiFu presents RWA product structure, including underlying documentation and eligibility requirements, on the BiFu RWA page.
FAQ
Is ERC-3643 better than ERC-1400 for RWA?
Neither is universally "better" — they reflect different design philosophies, and which one fits a given product depends on the issuer's needs, such as whether identity reuse across products or native support for multiple share classes matters more. What matters most for an investor is how well the chosen standard is implemented and governed, not which name appears on the product page.
Do these standards guarantee my tokenized security is compliant?
No. A token standard provides the technical mechanism for enforcing restrictions, but compliance depends on how the issuer configures eligibility checks, keeps identity data current, and governs administrative controls. A poorly configured deployment of either standard can still allow errors or gaps.
Can a token switch between these standards later?
Generally not without a significant technical migration, since each standard structures the contract and its compliance logic differently. Some issuers build newer tokens with upgradable components specifically to allow future changes, which introduces its own trade-offs around who controls that upgrade path.
Are ERC-3643 and ERC-1400 the only standards used for tokenized securities?
No. They are two well-known examples, but the broader security-token space includes other proposals and issuer-specific implementations that borrow ideas from both. The presence of a named standard is a useful signal to look for, but it is one data point among several when evaluating an RWA product's technical structure.
This content is for educational purposes only and does not constitute financial, investment, legal, tax, or trading advice. RWA products involve risk, including possible loss of principal. Always review product documents and risk disclosures before participating.
Related Reading
See how BiFu presents tokenized RWA products
ERC-3643 and ERC-1400 are two real permissioned token standards used for tokenized securities. This compares their general design philosophy at a conceptual level.
Disclaimer
This content is for educational purposes only and does not constitute financial, investment, legal, tax or trading advice. Digital assets, RWA products, gold-related products and forex products involve risk, including possible loss of principal. Always review product rules and risk disclosures before trading.
Tags
Related articles
Yield-Bearing Stablecoins vs RWA Fund Tokens
Yield-bearing stablecoins embed yield in the token price itself, while RWA fund tokens represent a separate share tied to fund NAV. This article compares the structural, regulatory, and risk differences.
2026-08-23 · 10 min read
Event Contracts vs. Price Contracts: Two Different Ways to Express a Market View
A price contract pays according to how far a market moves; an event contract pays a fixed amount according to whether a defined outcome occurs. The two express a view in structurally different ways, with different risks.
2026-08-23 · 6 min read






