Diagram to RWA token & Fraud RWA token
Flowchart:
flowchart TD
subgraph "Legitimate Flow"
A1[Token Publisher<br/>Legit e.g. Ondo, Centrifuge, Franklin Templeton]
C1[On-chain RWA Token]
D1[Real-World Assets<br/>Treasuries, Bonds, Real Estate]
E1[Custodian / Legal Entity<br/>Bank, Trust, Auditor]
A1 -->|Deploys smart contract| BC
BC -->|Issues token| C1
A1 -->|Claims linkage| D1
D1 -->|Held by| E1
E1 -->|Provides backing reports| A1
end
BC[(Ethereum Blockchain)]
subgraph "Fraudulent Flow"
A2[Parody Publisher<br/>Scammer]
C2[Fake RWA Token]
D2[No Real Assets]
E2[No Real Custodian]
A2 -->|Deploys fake contract| BC
BC -->|Mints worthless tokens| C2
A2 -.->|Falsely claims backing| D2
A2 -.->|Pretends to have| E2
end
classDef legit fill:#c8f7c5,stroke:#2e7d32,stroke-width:2px
classDef fraud fill:#f8c5c5,stroke:#b71c1c,stroke-width:2px
classDef fake fill:#ffcccc,stroke:#d32f2f,stroke-width:2px,stroke-dasharray:5 5
classDef blockchain fill:#e3f2fd,stroke:#1976d2,stroke-width:3px
class A1,C1,D1,E1 legit
class A2,C2 fraud
class D2,E2 fake
class BC blockchain
SVG: