From 61aec8454237ea9cd19dfce9513c4cef196d6a13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ben=20Kn=C3=A1b?= Date: Fri, 23 Aug 2024 15:58:14 +0200 Subject: [PATCH] Fix missing getWalletInfo result types --- lnd_methods/info/get_wallet_info.d.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lnd_methods/info/get_wallet_info.d.ts b/lnd_methods/info/get_wallet_info.d.ts index b1ef3004..56a3fad9 100644 --- a/lnd_methods/info/get_wallet_info.d.ts +++ b/lnd_methods/info/get_wallet_info.d.ts @@ -26,6 +26,8 @@ export type GetWalletInfoResult = { }[]; /** Is Synced To Chain */ is_synced_to_chain: boolean; + /** Is Synced To Network Graph */ + is_synced_to_graph?: boolean; /** Latest Known Block At Date */ latest_block_at: string; /** Peer Count */ @@ -34,6 +36,8 @@ export type GetWalletInfoResult = { pending_channels_count: number; /** Public Key */ public_key: string; + /** The URIs of the Node */ + uris?: string[]; /** Version String */ version: string; };