Skip to content

Commit e1bd716

Browse files
committed
lib: add tapd API to LNC class
1 parent 076c11a commit e1bd716

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

lib/lnc.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ import {
44
LndApi,
55
LoopApi,
66
PoolApi,
7-
snakeKeysToCamel
7+
snakeKeysToCamel,
8+
TaprootAssetsApi
89
} from '@lightninglabs/lnc-core';
910
import { createRpc } from './api/createRpc';
1011
import { CredentialStore, LncConfig, WasmGlobal } from './types/lnc';
@@ -33,6 +34,7 @@ export default class LNC {
3334
loop: LoopApi;
3435
pool: PoolApi;
3536
faraday: FaradayApi;
37+
tapd: TaprootAssetsApi;
3638
lit: LitApi;
3739

3840
constructor(lncConfig?: LncConfig) {
@@ -64,6 +66,7 @@ export default class LNC {
6466
this.loop = new LoopApi(createRpc, this);
6567
this.pool = new PoolApi(createRpc, this);
6668
this.faraday = new FaradayApi(createRpc, this);
69+
this.tapd = new TaprootAssetsApi(createRpc, this);
6770
this.lit = new LitApi(createRpc, this);
6871
}
6972

0 commit comments

Comments
 (0)