We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c74b48f commit c865242Copy full SHA for c865242
lib/lnc.ts
@@ -1,5 +1,6 @@
1
import {
2
FaradayApi,
3
+ LitApi,
4
LndApi,
5
LoopApi,
6
PoolApi,
@@ -32,6 +33,7 @@ export default class LNC {
32
33
loop: LoopApi;
34
pool: PoolApi;
35
faraday: FaradayApi;
36
+ lit: LitApi;
37
38
constructor(lncConfig?: LncConfig) {
39
// merge the passed in config with the defaults
@@ -62,6 +64,7 @@ export default class LNC {
62
64
this.loop = new LoopApi(createRpc, this);
63
65
this.pool = new PoolApi(createRpc, this);
66
this.faraday = new FaradayApi(createRpc, this);
67
+ this.lit = new LitApi(createRpc, this);
68
}
69
70
private get wasm() {
0 commit comments