1
1
const { resolve } = require ( 'path' )
2
2
const themeConfig = require ( '@spiralbtc/vuepress-devkit-theme/config' )
3
3
4
- const title = 'Lightning Dev Kit Documentation'
5
- const baseUrl = 'https://lightningdevkit .org'
6
- const githubUrl = 'https://github.com/lightningdevkit '
7
- const discordUrl = 'https://discord.gg/xaYE3pDQpm '
4
+ const title = 'Payjoin Dev Kit Documentation'
5
+ const baseUrl = 'https://payjoindevkit .org'
6
+ const githubUrl = 'https://github.com/payjoin '
7
+ const discordUrl = 'https://discord.gg/6rJD9R684h '
8
8
const themeColor = '#ffffff'
9
9
10
10
const docsSidebar = [
@@ -20,68 +20,15 @@ const docsSidebar = [
20
20
[ '/introduction/use_cases' , 'Use Cases' ] ,
21
21
]
22
22
} ,
23
- '/running-a-sample-ldk-node' ,
24
- {
25
- title : 'Overview' ,
26
- collapsable : true ,
27
- children : [
28
- [ '/overview/architecture' , 'Architecture' ] ,
29
- [ '/overview/peer-management' , 'Peer Management' ] ,
30
- [ '/overview/persistent_storage' , 'Persistent Storage' ] ,
31
- [ '/overview/blockchain_data' , 'Blockchain Data' ] ,
32
- [ '/overview/wallet_management' , 'Wallet Management' ] ,
33
- [ '/overview/networking' , 'Networking' ] ,
34
- [ '/overview/private_key_management' , 'Private Key Management' ] ,
35
- [ '/overview/transactions' , 'Transactions' ] ,
36
- [ '/overview/random_number_generation' , 'Random Number Generation' ] ,
37
- ]
38
- } ,
39
- {
40
- title : 'Payments' ,
41
- path : '/payments/' ,
42
- collapsable : true ,
43
- children : [
44
- [ '/payments/connecting_peers' , 'Connecting Peers' ] ,
45
- [ '/payments/managing_channels' , 'Managing Channels' ] ,
46
- [ '/payments/sending_payments' , 'Sending Payments' ] ,
47
- [ '/payments/receiving_payments' , 'Receiving Payments' ] ,
48
- ]
49
- } ,
50
- {
51
- title : 'Blockchain Data' ,
52
- collapsable : true ,
53
- children : [
54
- [ '/blockchain_data/introduction' , 'Introduction' ] ,
55
- [ '/blockchain_data/chain_activity' , 'Chain Activity' ] ,
56
- [ '/blockchain_data/block_source' , 'Block Source' ] ,
57
- [ '/blockchain_data/full_blocks' , 'Full Blocks' ] ,
58
- [ '/blockchain_data/pre_filtered_blocks' , 'Pre-filtered Blocks' ] ,
59
- [ '/blockchain_data/confirmed_transactions' , 'Confirmed Transactions' ] ,
60
- [ '/blockchain_data/transaction_broadcasting' , 'Transaction Broadcasting' ] ,
61
- ]
62
- } ,
63
- '/key_management' ,
23
+ '/send-receive-test-payjoins' ,
64
24
'/examples' ,
65
25
]
66
26
} ,
67
27
{
68
28
title : 'API Reference' ,
69
29
collapsable : false ,
70
30
children : [
71
- {
72
- title : "Rust" ,
73
- collapsable : true ,
74
- children : [
75
- [ 'https://docs.rs/lightning/*/lightning/' , 'lightning' ] ,
76
- [ 'https://docs.rs/lightning-background-processor/*/lightning_background_processor/' , 'lightning-background-processor' ] ,
77
- [ 'https://docs.rs/lightning-block-sync/*/lightning_block_sync/' , 'lightning-block-sync' ] ,
78
- [ 'https://docs.rs/lightning-invoice/*/lightning_invoice/' , 'lightning-invoice' ] ,
79
- [ 'https://docs.rs/lightning-net-tokio/*/lightning_net_tokio/' , 'lightning-net-tokio' ] ,
80
- [ 'https://docs.rs/lightning-persister/*/lightning_persister/' , 'lightning-persister' ] ,
81
- [ 'https://docs.rs/lightning-rapid-gossip-sync/*/lightning_rapid_gossip_sync/' , 'lightning-rapid-gossip-sync' ]
82
- ]
83
- } ,
84
- [ 'https://github.com/arik-so/SwiftLightning/tree/master/Documentation' , 'Swift' ]
31
+ [ 'https://docs.rs/payjoin/*/payjoin' , 'Rust' ]
85
32
] ,
86
33
}
87
34
]
@@ -92,8 +39,6 @@ const tutorialSidebar = [
92
39
collapsable : false ,
93
40
children : [
94
41
'/tutorials/getting-started' ,
95
- '/tutorials/build_a_node_in_java' ,
96
- '/tutorials/build_a_node_in_rust'
97
42
] ,
98
43
}
99
44
]
@@ -152,8 +97,8 @@ module.exports = {
152
97
link : '/tutorials/getting-started'
153
98
} ,
154
99
{
155
- text : 'Case Studies ' ,
156
- link : '/ case-studies'
100
+ text : 'Case Study ' ,
101
+ link : 'https://bitcoin.design/guide/ case-studies/payjoin/ '
157
102
} ,
158
103
{
159
104
text : 'Blog' ,
@@ -186,24 +131,8 @@ module.exports = {
186
131
link : '/introduction/'
187
132
} ,
188
133
{
189
- text : 'Sample LDK node' ,
190
- link : '/running-a-sample-ldk-node/'
191
- } ,
192
- {
193
- text : 'Architecture' ,
194
- link : '/overview/architecture/'
195
- } ,
196
- {
197
- text : 'Payments' ,
198
- link : '/payments/'
199
- } ,
200
- {
201
- text : 'Blockchain Data' ,
202
- link : '/blockchain_data/introduction/'
203
- } ,
204
- {
205
- text : 'Key Management' ,
206
- link : '/key_management/'
134
+ text : 'Send and Receive Test Payjoins' ,
135
+ link : '/send-receive-test-payjoins/'
207
136
} ,
208
137
{
209
138
text : 'Examples' ,
@@ -215,54 +144,37 @@ module.exports = {
215
144
title : 'Community' ,
216
145
children : [
217
146
{
218
- text : 'GitHub' ,
219
- link : githubUrl ,
220
- rel : 'noopener noreferrer'
221
- } ,
222
- {
223
- text : 'Twitter' ,
224
- link : "https://twitter.com/lightningdevkit" ,
225
- rel : 'noopener noreferrer'
226
- } ,
227
- {
228
- text : 'Chat on Discord' ,
147
+ text : 'Discord' ,
229
148
link : discordUrl ,
230
149
rel : 'noopener noreferrer'
231
150
} ,
232
151
{
233
- text : 'LDK Calendar' ,
234
- link : "https://calendar.google.com/calendar/embed?src=c_e6fv6vlshbpoob2mmbvblkkoj4%40group.calendar.google.com" ,
235
- rel : 'noopener noreferrer'
236
- } ,
237
- {
238
- text : 'LDK Review Club' ,
239
- link : "http://ldk.reviews/" ,
240
- rel : 'noopener noreferrer'
241
- } ,
242
- {
243
- text : 'Code of Conduct' ,
244
- link : "/code_of_conduct" ,
152
+ text : 'GitHub' ,
153
+ link : githubUrl ,
245
154
rel : 'noopener noreferrer'
246
155
} ,
247
156
{
248
- text : 'Reporting a Vulnerability ' ,
249
- link : "https://github.com/lightningdevkit/rust-lightning/blob/main/SECURITY.md " ,
157
+ text : 'PDK Roadmap ' ,
158
+ link : githubUrl + "https://github.com/orgs/payjoin/projects/1 " ,
250
159
rel : 'noopener noreferrer'
251
160
} ,
252
-
253
161
]
254
162
} ,
255
163
{
256
164
title : 'More' ,
257
165
children : [
166
+ {
167
+ text : 'Payjoin.org' ,
168
+ link : 'https://payjoin.org'
169
+ } ,
258
170
{
259
171
text : 'Blog' ,
260
172
link : '/blog/'
261
- }
173
+ } ,
262
174
]
263
175
}
264
176
] ,
265
- copyright : 'Copyright © 2023 LDK Developers'
177
+ copyright : 'Copyright © 2023 PDK Developers'
266
178
}
267
179
}
268
180
}
0 commit comments