Convert ASCII architecture diagram to mermaid#710
Merged
Conversation
…631) The High-Level Architecture diagram in integrations/dapp-building-overview.mdx used Unicode box-drawing characters. Converted to a mermaid flowchart matching the project convention established in PR #629 (flowchart LR with subgraph for Wallet Gateway internals). LOCAL_MODIFICATION comment added after COPIED_END to document the divergence from the upstream source.
Contributor
|
Preview deployment for your docs. Learn more about Mintlify Previews.
💡 Tip: Enable Workflows to automatically generate PRs for you. |
The Architectural Overview section in appdev/quickstart/deploy-to-devnet.mdx rendered an ASCII box-drawing diagram via an auto-generated cn-quickstart snippet. Replaced the snippet component with an equivalent mermaid flowchart (flowchart TB with two subgraphs: splice-node and cn-quickstart, connected by Ledger API and Registry API arrows).
Jatinp26
approved these changes
Jun 9, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Converts the ASCII box-drawing architecture diagram in
integrations/dapp-building-overview.mdxto amermaidflowchart, following the convention established in PR #629.What changed
The "High-Level Architecture" section had a Unicode box-drawing diagram showing the dApp → Wallet Gateway → Canton Validator → Signing Provider topology. Replaced with an equivalent
flowchart LRusing asubgraphfor the Wallet Gateway internals (dApp API / User API / User UI), matching the style ofm4-dapp-sdk.mdxandm4-wallet-gateway.mdx.A
LOCAL_MODIFICATIONcomment is added afterCOPIED_ENDper the convention, noting that the diagram is the only divergence from the upstream source.Notes
After a full inventory of all COPIED blocks across the docs, this was the only remaining page with a genuine ASCII architecture/flow diagram (boxes + arrows showing component interactions). Other files with
├/└characters contain directory trees or Daml transaction output, which are intentionally text-based and not candidates for mermaid conversion.Closes #631