Skip to content

Commit

Permalink
WLT-1945 - [Fireblocks JS SDK] Fix missing field in return type of Wa…
Browse files Browse the repository at this point in the history
…lletSetupStatusResponse
  • Loading branch information
goweiss committed Dec 2, 2024
1 parent 65d138d commit 21d65f6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2371,7 +2371,7 @@ export namespace NCW {

export class KeySetup {
status: SetupStatus;
algorithmName: string;
algorithmName: SigningAlgorithm;
confirmed: boolean;
backedUp: boolean;
}
Expand All @@ -2384,6 +2384,7 @@ export namespace NCW {

export class WalletSetupStatusResponse {
status: SetupStatus;
requiredAlgorithms: Array<SigningAlgorithm>;
deviceSetupStatus: Array<DeviceKeySetupResponse>;
}

Expand Down

0 comments on commit 21d65f6

Please sign in to comment.