File tree Expand file tree Collapse file tree 4 files changed +10
-7
lines changed Expand file tree Collapse file tree 4 files changed +10
-7
lines changed Original file line number Diff line number Diff line change 1
- VERSION=v0.2.2 -alpha
1
+ VERSION=v0.2.3 -alpha
2
2
3
3
ANDROID_ZIP_NAME=lnc-$VERSION -android.zip
4
4
IOS_ZIP_NAME=lnc-$VERSION -ios.zip
Original file line number Diff line number Diff line change 1
1
import { NativeModules } from 'react-native' ;
2
2
import {
3
3
FaradayApi ,
4
+ LitApi ,
4
5
LndApi ,
5
6
LoopApi ,
6
7
PoolApi ,
@@ -25,6 +26,7 @@ export default class LNC {
25
26
loop : LoopApi ;
26
27
pool : PoolApi ;
27
28
faraday : FaradayApi ;
29
+ lit : LitApi ;
28
30
29
31
constructor ( lncConfig ?: LncConfig ) {
30
32
// merge the passed in config with the defaults
@@ -47,6 +49,7 @@ export default class LNC {
47
49
this . loop = new LoopApi ( createRpc , this ) ;
48
50
this . pool = new PoolApi ( createRpc , this ) ;
49
51
this . faraday = new FaradayApi ( createRpc , this ) ;
52
+ this . lit = new LitApi ( createRpc , this ) ;
50
53
51
54
NativeModules . LncModule . initLNC ( this . _namespace ) ;
52
55
}
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @lightninglabs/lnc-rn" ,
3
- "version" : " 0.2.2 -alpha" ,
3
+ "version" : " 0.2.3 -alpha" ,
4
4
"description" : " Lightning Node Connect npm module for React Native" ,
5
5
"main" : " dist/commonjs/index.js" ,
6
6
"types" : " dist/typescript/index.d.ts" ,
44
44
},
45
45
"homepage" : " https://github.com/lightninglabs/lnc-rn#readme" ,
46
46
"dependencies" : {
47
- "@lightninglabs/lnc-core" : " 0.2.2 -alpha"
47
+ "@lightninglabs/lnc-core" : " 0.2.3 -alpha"
48
48
},
49
49
"devDependencies" : {
50
50
"@babel/core" : " 7.18.10" ,
Original file line number Diff line number Diff line change 1181
1181
" @jridgewell/resolve-uri" " 3.1.0"
1182
1182
" @jridgewell/sourcemap-codec" " 1.4.14"
1183
1183
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 ==
1188
1188
1189
1189
1190
1190
version "2.1.5"
You can’t perform that action at this time.
0 commit comments