Skip to content

Commit 042853a

Browse files
authored
WLT-1945 - [Fireblocks JS SDK] Fix missing field in return type of WalletSetupStatusResponse (#313)
1 parent 607fd22 commit 042853a

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/types.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2371,7 +2371,7 @@ export namespace NCW {
23712371

23722372
export class KeySetup {
23732373
status: SetupStatus;
2374-
algorithmName: string;
2374+
algorithmName: SigningAlgorithm;
23752375
confirmed: boolean;
23762376
backedUp: boolean;
23772377
}
@@ -2384,6 +2384,7 @@ export namespace NCW {
23842384

23852385
export class WalletSetupStatusResponse {
23862386
status: SetupStatus;
2387+
requiredAlgorithms: Array<SigningAlgorithm>;
23872388
deviceSetupStatus: Array<DeviceKeySetupResponse>;
23882389
}
23892390

0 commit comments

Comments
 (0)