From 9714f196194117fa733305eb7f78540cbb156d96 Mon Sep 17 00:00:00 2001 From: Bernardo Garces Chapero Date: Mon, 21 Nov 2022 10:42:26 +0000 Subject: [PATCH] Update types/index.d.ts Co-authored-by: legobeat <109787230+legobeat@users.noreply.github.com> --- types/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/index.d.ts b/types/index.d.ts index a6cac62b..81eba0c3 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -2,7 +2,7 @@ export type GetPublicKeyPayload = { hdPath: string }; export type GetPublicKeyResponse = { publicKey: string; address: string; - chainCode?: string | undefined; + chainCode?: string; }; export type LedgerSignTransactionPayload = { hdPath: string; rawTxHex: string };