Skip to content

Commit c368cb6

Browse files
authored
Merge pull request #22 from lightninglabs/v0.2.3-alpha
v0.2.3-alpha
2 parents 42ea126 + 2513a54 commit c368cb6

File tree

4 files changed

+10
-7
lines changed

4 files changed

+10
-7
lines changed

fetch-libraries.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION=v0.2.2-alpha
1+
VERSION=v0.2.3-alpha
22

33
ANDROID_ZIP_NAME=lnc-$VERSION-android.zip
44
IOS_ZIP_NAME=lnc-$VERSION-ios.zip

lib/lnc.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import { NativeModules } from 'react-native';
22
import {
33
FaradayApi,
4+
LitApi,
45
LndApi,
56
LoopApi,
67
PoolApi,
@@ -25,6 +26,7 @@ export default class LNC {
2526
loop: LoopApi;
2627
pool: PoolApi;
2728
faraday: FaradayApi;
29+
lit: LitApi;
2830

2931
constructor(lncConfig?: LncConfig) {
3032
// merge the passed in config with the defaults
@@ -47,6 +49,7 @@ export default class LNC {
4749
this.loop = new LoopApi(createRpc, this);
4850
this.pool = new PoolApi(createRpc, this);
4951
this.faraday = new FaradayApi(createRpc, this);
52+
this.lit = new LitApi(createRpc, this);
5053

5154
NativeModules.LncModule.initLNC(this._namespace);
5255
}

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lightninglabs/lnc-rn",
3-
"version": "0.2.2-alpha",
3+
"version": "0.2.3-alpha",
44
"description": "Lightning Node Connect npm module for React Native",
55
"main": "dist/commonjs/index.js",
66
"types": "dist/typescript/index.d.ts",
@@ -44,7 +44,7 @@
4444
},
4545
"homepage": "https://github.com/lightninglabs/lnc-rn#readme",
4646
"dependencies": {
47-
"@lightninglabs/lnc-core": "0.2.2-alpha"
47+
"@lightninglabs/lnc-core": "0.2.3-alpha"
4848
},
4949
"devDependencies": {
5050
"@babel/core": "7.18.10",

yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1181,10 +1181,10 @@
11811181
"@jridgewell/resolve-uri" "3.1.0"
11821182
"@jridgewell/sourcemap-codec" "1.4.14"
11831183

1184-
"@lightninglabs/[email protected].2-alpha":
1185-
version "0.2.2-alpha"
1186-
resolved "https://registry.yarnpkg.com/@lightninglabs/lnc-core/-/lnc-core-0.2.2-alpha.tgz#37e1dcf3419844f70e5df7901ec55cb62a9b0b1e"
1187-
integrity sha512-S46tZ6cH7jPgrotbZS9Pceyb2Nf+gaC9gmorm1DC7OpWxaf2gilelNk+0wVf9B8pqIwnBfr1z3h/sTophvLkUQ==
1184+
"@lightninglabs/[email protected].3-alpha":
1185+
version "0.2.3-alpha"
1186+
resolved "https://registry.yarnpkg.com/@lightninglabs/lnc-core/-/lnc-core-0.2.3-alpha.tgz#e1b92a9071d1dfb92e2d565710b56f28f57cbbd4"
1187+
integrity sha512-93D/uU64ayAaJv5kv4Pqwvkt+uT7yCtmHD08aUzvql+lbWm6U7m5loZLxz7tACFLXVPOQ8OHJL25W+3QMEYthg==
11881188

11891189
"@nodelib/[email protected]":
11901190
version "2.1.5"

0 commit comments

Comments
 (0)