lnlink-server 1.0.1 → 1.0.3
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/{app.js → dist/app.js} +329 -321
- package/dist/binaries.json +25 -0
- package/{build-info.json → dist/build-info.json} +2 -1
- package/{index.js → dist/index.js} +690 -121
- package/dist/index.js.map +7 -0
- package/dist/node_modules/debug/.coveralls.yml +1 -0
- package/dist/node_modules/debug/.eslintrc +11 -0
- package/dist/node_modules/debug/.travis.yml +14 -0
- package/dist/node_modules/debug/CHANGELOG.md +362 -0
- package/dist/node_modules/debug/LICENSE +19 -0
- package/dist/node_modules/debug/Makefile +50 -0
- package/dist/node_modules/debug/README.md +312 -0
- package/dist/node_modules/debug/component.json +19 -0
- package/dist/node_modules/debug/karma.conf.js +70 -0
- package/dist/node_modules/debug/node.js +1 -0
- package/dist/node_modules/debug/package.json +49 -0
- package/dist/node_modules/debug/src/browser.js +185 -0
- package/dist/node_modules/debug/src/debug.js +202 -0
- package/dist/node_modules/debug/src/index.js +10 -0
- package/dist/node_modules/debug/src/inspector-log.js +15 -0
- package/dist/node_modules/debug/src/node.js +248 -0
- package/dist/node_modules/depd/History.md +96 -0
- package/dist/node_modules/depd/LICENSE +22 -0
- package/dist/node_modules/depd/Readme.md +280 -0
- package/dist/node_modules/depd/index.js +522 -0
- package/dist/node_modules/depd/lib/browser/index.js +77 -0
- package/dist/node_modules/depd/lib/compat/callsite-tostring.js +103 -0
- package/dist/node_modules/depd/lib/compat/event-listener-count.js +22 -0
- package/dist/node_modules/depd/lib/compat/index.js +79 -0
- package/dist/node_modules/depd/package.json +41 -0
- package/dist/node_modules/http-errors/HISTORY.md +132 -0
- package/dist/node_modules/http-errors/LICENSE +23 -0
- package/dist/node_modules/http-errors/README.md +135 -0
- package/dist/node_modules/http-errors/index.js +260 -0
- package/dist/node_modules/http-errors/package.json +48 -0
- package/dist/node_modules/inherits/LICENSE +16 -0
- package/dist/node_modules/inherits/README.md +42 -0
- package/dist/node_modules/inherits/inherits.js +7 -0
- package/dist/node_modules/inherits/inherits_browser.js +23 -0
- package/dist/node_modules/inherits/package.json +29 -0
- package/dist/node_modules/ms/index.js +152 -0
- package/dist/node_modules/ms/license.md +21 -0
- package/dist/node_modules/ms/package.json +37 -0
- package/dist/node_modules/ms/readme.md +51 -0
- package/dist/node_modules/setprototypeof/LICENSE +13 -0
- package/dist/node_modules/setprototypeof/README.md +26 -0
- package/dist/node_modules/setprototypeof/index.d.ts +2 -0
- package/dist/node_modules/setprototypeof/index.js +15 -0
- package/dist/node_modules/setprototypeof/package.json +25 -0
- package/dist/node_modules/statuses/HISTORY.md +65 -0
- package/dist/node_modules/statuses/LICENSE +23 -0
- package/dist/node_modules/statuses/README.md +127 -0
- package/dist/node_modules/statuses/codes.json +66 -0
- package/dist/node_modules/statuses/index.js +113 -0
- package/dist/node_modules/statuses/package.json +48 -0
- package/dist/package.json +62 -0
- package/dist/public/css/initOwner.css +705 -0
- package/dist/public/img/logo.svg +1 -0
- package/{public → dist/public}/init.html +5 -5
- package/dist/public/js/init.js +895 -0
- package/{setting.regtest.json → dist/setting.regtest.json} +2 -1
- package/package.json +51 -20
- package/binaries.json +0 -20
- package/index.js.map +0 -7
- package/public/css/initOwner.css +0 -553
- package/public/js/init.js +0 -454
- /package/{config.default.js → dist/config.default.js} +0 -0
- /package/{prisma → dist/prisma}/migrations/20250918020814_/migration.sql +0 -0
- /package/{prisma → dist/prisma}/migrations/20251114105314_auto_update/migration.sql +0 -0
- /package/{prisma → dist/prisma}/migrations/migration_lock.toml +0 -0
- /package/{prisma → dist/prisma}/schema.prisma +0 -0
- /package/{proto → dist/proto}/chainkit.proto +0 -0
- /package/{proto → dist/proto}/lightning.proto +0 -0
- /package/{proto → dist/proto}/lit-status.proto +0 -0
- /package/{proto → dist/proto}/looprpc/client.proto +0 -0
- /package/{proto → dist/proto}/price_oracle.proto +0 -0
- /package/{proto → dist/proto}/rfqrpc/rfq.proto +0 -0
- /package/{proto → dist/proto}/routerrpc/router.proto +0 -0
- /package/{proto → dist/proto}/signrpc/signer.proto +0 -0
- /package/{proto → dist/proto}/stateservice.proto +0 -0
- /package/{proto → dist/proto}/swapserverrpc/common.proto +0 -0
- /package/{proto → dist/proto}/tapchannel.proto +0 -0
- /package/{proto → dist/proto}/tapcommon.proto +0 -0
- /package/{proto → dist/proto}/taprootassets.proto +0 -0
- /package/{proto → dist/proto}/universe.proto +0 -0
- /package/{proto → dist/proto}/walletkit.proto +0 -0
- /package/{proto → dist/proto}/walletunlocker.proto +0 -0
- /package/{public → dist/public}/favicon.ico +0 -0
- /package/{setting.mainnet.json → dist/setting.mainnet.json} +0 -0
- /package/{setting.testnet.json → dist/setting.testnet.json} +0 -0
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
<head>
|
|
5
5
|
<meta charset="UTF-8">
|
|
6
6
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
7
|
-
<title>
|
|
7
|
+
<title>Node Initial Configuration</title>
|
|
8
8
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet"
|
|
9
9
|
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
|
|
10
10
|
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet">
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
|
|
14
14
|
<body>
|
|
15
15
|
<div class="root">
|
|
16
|
-
<h1><i class="fas fa-bolt"></i> LND NOSTR Link</h1>
|
|
16
|
+
<!-- <h1><i class="fas fa-bolt"></i> LND NOSTR Link</h1> -->
|
|
17
17
|
|
|
18
18
|
<!-- Main Content -->
|
|
19
19
|
<div id="main-content">
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
<!-- Error message will be inserted here -->
|
|
36
36
|
</div>
|
|
37
37
|
<div class="modal-footer">
|
|
38
|
-
<button type="button" class="btn btn-
|
|
38
|
+
<button type="button" class="btn btn-lime" data-bs-dismiss="modal">Close</button>
|
|
39
39
|
</div>
|
|
40
40
|
</div>
|
|
41
41
|
</div>
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
<div class="modal-content">
|
|
48
48
|
<div class="modal-header">
|
|
49
49
|
<h5 class="modal-title" id="successModalLabel">
|
|
50
|
-
<i class="fas fa-check-circle text-
|
|
50
|
+
<i class="fas fa-check-circle text-lime"></i> Success
|
|
51
51
|
</h5>
|
|
52
52
|
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
|
53
53
|
</div>
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
<!-- Success message will be inserted here -->
|
|
56
56
|
</div>
|
|
57
57
|
<div class="modal-footer">
|
|
58
|
-
<button type="button" class="btn btn-
|
|
58
|
+
<button type="button" class="btn btn-lime" data-bs-dismiss="modal">OK</button>
|
|
59
59
|
</div>
|
|
60
60
|
</div>
|
|
61
61
|
</div>
|