Skip to content

Commit 808852d

Browse files
committed
Updates.
1 parent 8d80161 commit 808852d

File tree

1 file changed

+16
-5
lines changed

1 file changed

+16
-5
lines changed

docs/welcome.md

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,22 @@ support that.
1818
Here 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

2839
The important thing about CosmWasm smart contracts is their transparency. Every smart contract

0 commit comments

Comments
 (0)