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: content/stellar-contracts/tokens/rwa/rwa.mdx
+43Lines changed: 43 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -482,6 +482,49 @@ Features:
482
482
- Efficient storage with bucket-based architecture (supports up to 10,000 tokens)
483
483
- Swap-remove pattern for compact storage
484
484
485
+
## Architecture Overview
486
+
487
+
Now that we've covered each module individually, let's see how they work together. We'll walk through a `transfer()` operation to illustrate how the components interact:
488
+
489
+
```mermaid
490
+
sequenceDiagram
491
+
participant InvestorA
492
+
participant Token
493
+
participant IdentityVerifier
494
+
participant IdentityRegistryStorage
495
+
participant ClaimTopicsAndIssuers
496
+
participant TrustedIssuer
497
+
participant InvestorB IdentityClaims
498
+
participant ComplianceContract
499
+
500
+
Note over Token,ComplianceContract: 1. Eligibility
0 commit comments