Skip to content

Commit

Permalink
Add ldknode into mermaid diagram
Browse files Browse the repository at this point in the history
  • Loading branch information
mrfelton committed Jun 19, 2024
1 parent f4b9192 commit 81d9baf
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,27 @@ The script sets up the following channels, which allows for testing of Bolt 12 i

```mermaid
graph LR
classDef nodes stroke:#FFD4D4,stroke-width:1px,fill:#303030;
subgraph lndgroup ["LND"]
lnd1(lnd1)
lnd2(lnd2)
end
subgraph clngroup ["CLN"]
cln2(cln3)
cln3(cln2)
cln1(cln1)
end
subgraph eclairgroup ["Eclair"]
eclair1(eclair1)
eclair2(eclair2)
eclair3(eclair3)
end
subgraph ldkgroup ["LDK Node"]
ldknode1(ldknode1)
ldknode2(ldknode2)
end
lnd1 --10M (5M/5M)--> cln1
lnd1 --10M (5M/5M)--> eclair1
lnd1 --10M (5M/5M)--> ldknode1
Expand All @@ -60,8 +81,12 @@ graph LR
lnd2 --10M (5M/5M)--> ldknode2
cln2 --10M (5M/5M)--> cln3
eclair2 --10M (5M/5M)--> eclair3
class lndgroup,clngroup,eclairgroup,ldkgroup nodes;
class lnd1,lnd2,cln1,cln2,cln3,eclair1,eclair2,eclair3,ldknode1,ldknode2 nodes;
```


## Visualizing the Network with LN-Visualizer

LN-Visualizer is a tool that allows you to visualize the Lightning Network nodes and channels. It can be accessed at [http://localhost:5646/](http://localhost:5646/).
Expand Down

0 comments on commit 81d9baf

Please sign in to comment.