Skip to content

Commit de79bfe

Browse files
committed
Add Getting Started with LDK Node guide
Walkthrough for building a Lightning node with ldk-node in Rust and kotlin covering node setup, channel management, BOLT11 and BOLT12 payments, and spontaneous payments using Polar for a local regtest environment.
1 parent c07f89e commit de79bfe

4 files changed

Lines changed: 1546 additions & 0 deletions

File tree

docs/.vitepress/config.mts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ const docsSidebar: DefaultTheme.SidebarItem[] = [
6565
{ text: 'Closing a Channel', link: '/building-a-node-with-ldk/closing-a-channel' },
6666
],
6767
},
68+
{ text: 'Getting Started with LDK Node', link: '/getting-started-with-ldk-node' },
6869
{ text: 'Running a sample LDK node', link: '/running-a-sample-ldk-node' },
6970
{
7071
text: 'Advanced Guides',

docs/.vitepress/theme/components/SiteFooter.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ const columns: Column[] = [
2121
children: [
2222
{ text: 'Introduction', link: '/introduction/' },
2323
{ text: 'Building a node with LDK', link: '/building-a-node-with-ldk/introduction/' },
24+
{ text: 'Getting Started with LDK Node', link: '/getting-started-with-ldk-node/' },
2425
{ text: 'Running a sample LDK node', link: '/running-a-sample-ldk-node/' },
2526
{ text: 'Architecture', link: '/introduction/architecture/' },
2627
{ text: 'Blockchain Data', link: '/blockchain_data/' },

docs/.vuepress/config.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ const docsSidebar = [
5757
["/building-a-node-with-ldk/closing-a-channel", "Closing a Channel"],
5858
],
5959
},
60+
["/getting-started-with-ldk-node", "Getting Started with LDK Node"],
6061
"/running-a-sample-ldk-node",
6162
{
6263
title: "Blockchain Data",
@@ -221,6 +222,10 @@ module.exports = {
221222
text: "Building a node with LDK",
222223
link: "/building-a-node-with-ldk/introduction/",
223224
},
225+
{
226+
text: "Getting Started with LDK Node",
227+
link: "/getting-started-with-ldk-node/",
228+
},
224229
{
225230
text: "Running a sample LDK node",
226231
link: "/running-a-sample-ldk-node/",

0 commit comments

Comments
 (0)