You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add docs/ directory with guides for getting started, configuration,
the gRPC API, Tor setup, and production operations. Add per-crate
READMEs for ldk-server-client, ldk-server-grpc, and ldk-server-cli.
Include READMEs in lib.rs via doc = include_str! so rustdoc validates
the code examples. Update the root README to link to the new docs and
fix outdated REST/port references.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: README.md
+24-53Lines changed: 24 additions & 53 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ a Lightning node while exposing a robust, language-agnostic API via [Protocol Bu
15
15
- Deploy a Lightning Network node with minimal configuration, no coding required.
16
16
17
17
-**API-First Design**:
18
-
- Exposes a well-defined API using Protobuf, allowing seamless integration with HTTP-clients or applications.
18
+
- Exposes a well-defined gRPC API using Protobuf, allowing seamless integration with any language.
19
19
20
20
-**Powered by LDK**:
21
21
- Built on top of LDK-Node, leveraging the modular, reliable, and high-performance architecture of LDK.
@@ -26,67 +26,38 @@ a Lightning node while exposing a robust, language-agnostic API via [Protocol Bu
26
26
27
27
### Project Status
28
28
29
-
🚧 **Work in Progress**:
30
-
-**APIs Under Development**: Expect breaking changes as the project evolves.
31
-
-**Potential Bugs and Inconsistencies**: While progress is being made toward stability, unexpected behavior may occur.
32
-
-**Improved Logging and Error Handling Coming Soon**: Current error handling is rudimentary (specially for CLI), and usability improvements are actively being worked on.
33
-
-**Pending Testing**: Not tested, hence don't use it for production!
29
+
**Work in Progress**:
30
+
- APIs are under development. Expect breaking changes as the project evolves.
31
+
- Not tested for production use.
32
+
- We welcome your feedback and contributions to help shape the future of LDK Server!
34
33
35
-
We welcome your feedback and contributions to help shape the future of LDK Server!
34
+
### Quick Start
36
35
37
-
38
-
### Configuration
39
-
Refer `./ldk-server/ldk-server-config.toml` to see available configuration options.
40
-
41
-
You can configure the node via a TOML file, environment variables, or CLI arguments. All options are optional — values provided via CLI override environment variables, which override the values in the TOML file.
0 commit comments