https://github.com/lightninglabs/lnc-core
Type definitions and utilities for Lightning Node Connect, leveraged by lnc-web and lnc-rn
https://github.com/lightninglabs/lnc-core
Last synced: over 1 year ago
JSON representation
Type definitions and utilities for Lightning Node Connect, leveraged by lnc-web and lnc-rn
- Host: GitHub
- URL: https://github.com/lightninglabs/lnc-core
- Owner: lightninglabs
- Created: 2022-09-21T00:58:12.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-10-31T02:14:51.000Z (over 1 year ago)
- Last Synced: 2024-10-31T17:05:16.753Z (over 1 year ago)
- Language: TypeScript
- Homepage: https://www.npmjs.com/package/@lightninglabs/lnc-core
- Size: 796 KB
- Stars: 8
- Watchers: 18
- Forks: 3
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# @lightninglabs/lnc-core
## Type definitions and utilities for Lightning Node Connect, leveraged by lnc-web and lnc-rn
## Install
`npm i @lightninglabs/lnc-core`
## Updating protos
First, update the service version under the `config` block in `package.json`.
eg.
```
"config": {
"lnd_release_tag": "v0.14.2-beta",
"loop_release_tag": "v0.17.0-beta",
"pool_release_tag": "v0.5.5-alpha",
"faraday_release_tag": "v0.2.5-alpha",
"protoc_version": "3.15.8"
},
```
Then run the following commands:
```
# download schemas
yarn run update-protos
# format schemas
yarn run generate
```