@@ -16,35 +16,60 @@ const docsSidebar = [
16
16
title : "Introduction" ,
17
17
path : "/introduction/" ,
18
18
collapsable : true ,
19
- children : [ [ "/introduction/use_cases" , "Use Cases" ] ] ,
20
- } ,
21
- "/running-a-sample-ldk-node" ,
22
- {
23
- title : "Overview" ,
24
- collapsable : true ,
25
19
children : [
26
- [ "/overview/architecture" , "Architecture" ] ,
27
- [ "/overview/peer-management" , "Peer Management" ] ,
28
- [ "/overview/persistent_storage" , "Persistent Storage" ] ,
29
- [ "/overview/blockchain_data" , "Blockchain Data" ] ,
30
- [ "/overview/wallet_management" , "Wallet Management" ] ,
31
- [ "/overview/networking" , "Networking" ] ,
32
- [ "/overview/private_key_management" , "Private Key Management" ] ,
33
- [ "/overview/transactions" , "Transactions" ] ,
34
- [ "/overview/random_number_generation" , "Random Number Generation" ] ,
20
+ [ "/introduction/use-cases" , "Use Cases" ] ,
21
+ [ "/introduction/architecture" , "Architecture" ] ,
22
+ [ "/introduction/peer-management" , "Peer Management" ] ,
23
+ [ "/introduction/persistent_storage" , "Persistent Storage" ] ,
24
+ [ "/introduction/blockchain_data" , "Blockchain Data" ] ,
25
+ [ "/introduction/wallet_management" , "Wallet Management" ] ,
26
+ [ "/introduction/networking" , "Networking" ] ,
27
+ [ "/introduction/private_key_management" , "Private Key Management" ] ,
28
+ [ "/introduction/transactions" , "Transactions" ] ,
29
+ [ "/introduction/random_number_generation" , "Random Number Generation" ] ,
35
30
] ,
36
31
} ,
37
32
{
38
- title : "Payments" ,
39
- path : "/payments/" ,
33
+ title : "Building a node with LDK" ,
40
34
collapsable : true ,
41
35
children : [
42
- [ "/payments/connecting_peers" , "Connecting Peers" ] ,
43
- [ "/payments/managing_channels" , "Managing Channels" ] ,
44
- [ "/payments/sending_payments" , "Sending Payments" ] ,
45
- [ "/payments/receiving_payments" , "Receiving Payments" ] ,
36
+ [ "/building-a-node-with-ldk/introduction" , "Introduction" ] ,
37
+ [ "/building-a-node-with-ldk/installation" , "Installation" ] ,
38
+ [
39
+ "/building-a-node-with-ldk/setting-up-a-channel-manager" ,
40
+ "Setting up a Channel Manager" ,
41
+ ] ,
42
+ [
43
+ "/building-a-node-with-ldk/handling-events" ,
44
+ "Handling Events" ,
45
+ ] ,
46
+ [
47
+ "/building-a-node-with-ldk/setting-up-a-peer-manager" ,
48
+ "Setting up a Peer Manager" ,
49
+ ] ,
50
+ [
51
+ "/building-a-node-with-ldk/connect-to-peers" ,
52
+ "Connect to Peers" ,
53
+ ] ,
54
+ [
55
+ "/building-a-node-with-ldk/opening-a-channel" ,
56
+ "Opening a Channel" ,
57
+ ] ,
58
+ [
59
+ "/building-a-node-with-ldk/sending-payments" ,
60
+ "Sending Payments" ,
61
+ ] ,
62
+ [
63
+ "/building-a-node-with-ldk/receiving-payments" ,
64
+ "Receiving Payments" ,
65
+ ] ,
66
+ [
67
+ "/building-a-node-with-ldk/closing-a-channel" ,
68
+ "Closing a Channel" ,
69
+ ] ,
46
70
] ,
47
71
} ,
72
+ "/running-a-sample-ldk-node" ,
48
73
{
49
74
title : "Blockchain Data" ,
50
75
collapsable : true ,
@@ -116,54 +141,6 @@ const docsSidebar = [
116
141
} ,
117
142
] ;
118
143
119
- const tutorialSidebar = [
120
- {
121
- title : "Tutorials" ,
122
- collapsable : false ,
123
- children : [
124
- "/tutorials/getting-started" ,
125
- {
126
- title : "Building a node with LDK" ,
127
- collapsable : false ,
128
- children : [
129
- [ "/tutorials/building-a-node-with-ldk/introduction" , "Introduction" ] ,
130
- [
131
- "/tutorials/building-a-node-with-ldk/setting-up-a-channel-manager" ,
132
- "Setting up a Channel Manager" ,
133
- ] ,
134
- [
135
- "/tutorials/building-a-node-with-ldk/handling-events" ,
136
- "Handling Events" ,
137
- ] ,
138
- [
139
- "/tutorials/building-a-node-with-ldk/setting-up-a-peer-manager" ,
140
- "Setting up a Peer Manager" ,
141
- ] ,
142
- [
143
- "/tutorials/building-a-node-with-ldk/connect-to-peers" ,
144
- "Connect to Peers" ,
145
- ] ,
146
- [
147
- "/tutorials/building-a-node-with-ldk/opening-a-channel" ,
148
- "Opening a Channel" ,
149
- ] ,
150
- [
151
- "/tutorials/building-a-node-with-ldk/sending-payments" ,
152
- "Sending Payments" ,
153
- ] ,
154
- [
155
- "/tutorials/building-a-node-with-ldk/receiving-payments" ,
156
- "Receiving Payments" ,
157
- ] ,
158
- [
159
- "/tutorials/building-a-node-with-ldk/closing-a-channel" ,
160
- "Closing a Channel" ,
161
- ] ,
162
- ] ,
163
- } ,
164
- ] ,
165
- } ,
166
- ] ;
167
144
168
145
const blogSidebar = [
169
146
{
@@ -218,10 +195,6 @@ module.exports = {
218
195
text : "Docs" ,
219
196
link : "/introduction/" ,
220
197
} ,
221
- {
222
- text : "Tutorials" ,
223
- link : "/tutorials/getting-started" ,
224
- } ,
225
198
{
226
199
text : "Blog" ,
227
200
link : "/blog/" ,
@@ -240,7 +213,6 @@ module.exports = {
240
213
sidebar : {
241
214
"/_blog/" : blogSidebar ,
242
215
"/blog/" : blogSidebar ,
243
- "/tutorials/" : tutorialSidebar ,
244
216
"/" : docsSidebar ,
245
217
} ,
246
218
footer : {
@@ -253,16 +225,16 @@ module.exports = {
253
225
link : "/introduction/" ,
254
226
} ,
255
227
{
256
- text : "Sample LDK node" ,
257
- link : "/running -a-sample-ldk-node/ " ,
228
+ text : "Building a node with LDK " ,
229
+ link : "/building -a-node-with-ldk/introduction " ,
258
230
} ,
259
231
{
260
- text : "Architecture " ,
261
- link : "/overview/architecture /" ,
232
+ text : "Running a sample LDK node " ,
233
+ link : "/running-a-sample-ldk-node /" ,
262
234
} ,
263
235
{
264
- text : "Payments " ,
265
- link : "/payments /" ,
236
+ text : "Architecture " ,
237
+ link : "/introduction/architecture /" ,
266
238
} ,
267
239
{
268
240
text : "Blockchain Data" ,
@@ -313,39 +285,6 @@ module.exports = {
313
285
} ,
314
286
] ,
315
287
} ,
316
- {
317
- title : "Docs" ,
318
- children : [
319
- {
320
- text : "Introduction" ,
321
- link : "/introduction/" ,
322
- } ,
323
- {
324
- text : "Sample LDK node" ,
325
- link : "/running-a-sample-ldk-node/" ,
326
- } ,
327
- {
328
- text : "Architecture" ,
329
- link : "/overview/architecture/" ,
330
- } ,
331
- {
332
- text : "Payments" ,
333
- link : "/payments/" ,
334
- } ,
335
- {
336
- text : "Blockchain Data" ,
337
- link : "/blockchain_data/introduction/" ,
338
- } ,
339
- {
340
- text : "Key Management" ,
341
- link : "/key_management/" ,
342
- } ,
343
- {
344
- text : "Examples" ,
345
- link : "/examples/" ,
346
- } ,
347
- ] ,
348
- } ,
349
288
{
350
289
title : "Resources" ,
351
290
children : [
@@ -362,10 +301,6 @@ module.exports = {
362
301
{
363
302
title : "Other" ,
364
303
children : [
365
- {
366
- text : "Tutorials" ,
367
- link : "/tutorials/getting-started/" ,
368
- } ,
369
304
{
370
305
text : "Bitcoin Dev Kit" ,
371
306
link : "https://bitcoindevkit.org/" ,
@@ -377,15 +312,6 @@ module.exports = {
377
312
} ,
378
313
] ,
379
314
} ,
380
- {
381
- title : "More" ,
382
- children : [
383
- {
384
- text : "Blog" ,
385
- link : "/blog/" ,
386
- } ,
387
- ] ,
388
- } ,
389
315
] ,
390
316
copyright : "Copyright © 2024 LDK Developers" ,
391
317
} ,
0 commit comments