Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/.vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ const docsSidebar: DefaultTheme.SidebarItem[] = [
{ text: 'Closing a Channel', link: '/building-a-node-with-ldk/closing-a-channel' },
],
},
{ text: 'Getting Started with LDK Node', link: '/getting-started-with-ldk-node' },
{ text: 'Running a sample LDK node', link: '/running-a-sample-ldk-node' },
{
text: 'Advanced Guides',
Expand Down
19 changes: 10 additions & 9 deletions docs/.vitepress/theme/components/SiteFooter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,15 @@ const columns: Column[] = [
title: 'Docs',
children: [
{ text: 'Introduction', link: '/introduction/' },
{ text: 'Building a node with LDK', link: '/building-a-node-with-ldk/introduction/' },
{ text: 'Running a sample LDK node', link: '/running-a-sample-ldk-node/' },
{ text: 'Architecture', link: '/introduction/architecture/' },
{ text: 'Building a node with LDK', link: '/building-a-node-with-ldk/introduction' },
{ text: 'Getting Started with LDK Node', link: '/getting-started-with-ldk-node' },
{ text: 'Running a sample LDK node', link: '/running-a-sample-ldk-node' },
{ text: 'Architecture', link: '/introduction/architecture' },
{ text: 'Blockchain Data', link: '/blockchain_data/' },
{ text: 'Key Management', link: '/key_management/' },
{ text: 'Fee Estimation', link: '/fee_estimation/' },
{ text: 'Probing and Path Finding', link: '/probing/' },
{ text: 'Examples', link: '/examples/' },
{ text: 'Key Management', link: '/key_management' },
{ text: 'Fee Estimation', link: '/fee_estimation' },
{ text: 'Probing and Path Finding', link: '/probing' },
{ text: 'Examples', link: '/examples' },
],
},
{
Expand All @@ -42,13 +43,13 @@ const columns: Column[] = [
external: true,
},
{ text: 'LDK Review Club', link: 'http://ldk.reviews/', external: true },
{ text: 'Code of Conduct', link: '/code-of-conduct/' },
{ text: 'Code of Conduct', link: '/code-of-conduct' },
],
},
{
title: 'Resources',
children: [
{ text: 'Case Studies', link: '/case-studies/' },
{ text: 'Case Studies', link: '/case-studies' },
{ text: 'Blog', link: '/blog/' },
],
},
Expand Down
5 changes: 5 additions & 0 deletions docs/.vuepress/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ const docsSidebar = [
["/building-a-node-with-ldk/closing-a-channel", "Closing a Channel"],
],
},
["/getting-started-with-ldk-node", "Getting Started with LDK Node"],
"/running-a-sample-ldk-node",
{
title: "Blockchain Data",
Expand Down Expand Up @@ -221,6 +222,10 @@ module.exports = {
text: "Building a node with LDK",
link: "/building-a-node-with-ldk/introduction/",
},
{
text: "Getting Started with LDK Node",
link: "/getting-started-with-ldk-node/",
},
{
text: "Running a sample LDK node",
link: "/running-a-sample-ldk-node/",
Expand Down
Binary file added docs/assets/ldk-node-01-startup.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/ldk-node-02-channel-pending.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/ldk-node-03-channel-ready.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/ldk-node-04-invoice.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/ldk-node-05-payment-received.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/ldk-node-06-payment-successful.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/ldk-node-07-bolt12-offer.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/ldk-node-08-final-payments.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading