Skip to content

Commit

Permalink
add safeMessageHash to multisig response
Browse files Browse the repository at this point in the history
  • Loading branch information
CarlosQ96 committed Oct 13, 2023
1 parent 490c6f0 commit 3c4ec6c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/controllers/v1/multisigAuthenticationController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ export class MultisigAuthenticationController {
jwt: token?.jwt,
expiration: multisigSession.expirationDate.valueOf(),
publicAddress: multisigSession.multisigAddress,
safeMessageHash: multisigSession.safeMessageHash,
status: multisigSession.status,
};
} catch (e) {
Expand Down
1 change: 1 addition & 0 deletions src/types/requestResponses.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ export type MultisigAuthenticationResponse = {
jwt?: string;
expiration?: number;
publicAddress?: string;
safeMessageHash?: string;
status: string;
};

Expand Down

0 comments on commit 3c4ec6c

Please sign in to comment.