lnlink-server 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +461 -0
- package/dist/app.js +11165 -0
- package/dist/binaries.json +20 -0
- package/dist/build-info.json +41 -0
- package/dist/config.default.js +19 -0
- package/dist/index.js +19002 -0
- package/dist/index.js.map +7 -0
- package/dist/package.json +61 -0
- package/dist/prisma/migrations/20250918020814_/migration.sql +188 -0
- package/dist/prisma/migrations/20251114105314_auto_update/migration.sql +2 -0
- package/dist/prisma/migrations/migration_lock.toml +3 -0
- package/dist/prisma/schema.prisma +181 -0
- package/dist/proto/chainkit.proto +74 -0
- package/dist/proto/lightning.proto +5411 -0
- package/dist/proto/lit-status.proto +36 -0
- package/dist/proto/looprpc/client.proto +1435 -0
- package/dist/proto/price_oracle.proto +243 -0
- package/dist/proto/rfqrpc/rfq.proto +436 -0
- package/dist/proto/routerrpc/router.proto +1136 -0
- package/dist/proto/signrpc/signer.proto +709 -0
- package/dist/proto/stateservice.proto +73 -0
- package/dist/proto/swapserverrpc/common.proto +37 -0
- package/dist/proto/tapchannel.proto +306 -0
- package/dist/proto/tapcommon.proto +36 -0
- package/dist/proto/taprootassets.proto +1959 -0
- package/dist/proto/universe.proto +1063 -0
- package/dist/proto/walletkit.proto +1594 -0
- package/dist/proto/walletunlocker.proto +338 -0
- package/dist/public/css/initOwner.css +553 -0
- package/dist/public/favicon.ico +0 -0
- package/dist/public/init.html +70 -0
- package/dist/public/js/init.js +454 -0
- package/dist/setting.mainnet.json +22 -0
- package/dist/setting.regtest.json +22 -0
- package/dist/setting.testnet.json +22 -0
- package/package.json +91 -0
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
syntax = "proto3";
|
|
2
|
+
|
|
3
|
+
package litrpc;
|
|
4
|
+
|
|
5
|
+
option go_package = "github.com/lightninglabs/lightning-terminal/litrpc";
|
|
6
|
+
|
|
7
|
+
// The Status server can be used to query the state of various LiT sub-servers.
|
|
8
|
+
service Status {
|
|
9
|
+
rpc SubServerStatus (SubServerStatusReq) returns (SubServerStatusResp);
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
message SubServerStatusReq {
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
message SubServerStatusResp {
|
|
16
|
+
// A map of sub-server names to their status.
|
|
17
|
+
map<string, SubServerStatus> sub_servers = 1;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
message SubServerStatus {
|
|
21
|
+
// disabled is true if the sub-server is available in the LiT package but
|
|
22
|
+
// has explicitly been disabled.
|
|
23
|
+
bool disabled = 1;
|
|
24
|
+
|
|
25
|
+
// running is true if the sub-server is currently running.
|
|
26
|
+
bool running = 2;
|
|
27
|
+
|
|
28
|
+
// error describes an error that might have resulted in the sub-server not
|
|
29
|
+
// starting up properly.
|
|
30
|
+
string error = 3;
|
|
31
|
+
|
|
32
|
+
// custom_status details a custom state that the sub-server has entered,
|
|
33
|
+
// which is unique to the sub-server, and which is not the standard
|
|
34
|
+
// disabled, running or errored state.
|
|
35
|
+
string custom_status = 4;
|
|
36
|
+
}
|