File tree Expand file tree Collapse file tree 1 file changed +16
-5
lines changed Expand file tree Collapse file tree 1 file changed +16
-5
lines changed Original file line number Diff line number Diff line change @@ -18,11 +18,22 @@ support that.
1818Here is where to find CosmWasm in the whole Cosmos stack:
1919
2020``` mermaid
21- erDiagram
22- "Cosmos SDK" ||--|| CometBFT: Uses
23- "Cosmos SDK" ||--|| "CosmWasm": Includes
24- "Cosmos SDK" ||--o{ "Custom Module" : Includes
25- "CosmWasm" ||--o{ "Smart Contract": Executes
21+ graph TD
22+ A["Cosmos SDK"]:::cosmos -->|"_uses_"| B[CometBFT]
23+ A -->|"_includes_"| C["CosmWasm"]
24+ A -->|"_includes_"| D["Custom Module"]
25+ C -->|"_executes_"| E["Smart Contract"]
26+
27+ classDef cosmos fill:#e0f7fa,stroke:#00796b,stroke-width:2px;
28+ classDef wasm fill:#f3e5f5,stroke:#6a1b9a,stroke-width:2px;
29+ classDef custom fill:#fff9c4,stroke:#fbc02d,stroke-width:2px;
30+ classDef contract fill:#fbe9e7,stroke:#d84315,stroke-width:2px;
31+
32+ class A cosmos;
33+ class B cosmos;
34+ class C wasm;
35+ class D cosmos;
36+ class E wasm;
2637```
2738
2839The important thing about CosmWasm smart contracts is their transparency. Every smart contract
You can’t perform that action at this time.
0 commit comments