Skip to content

Commit

Permalink
fix: returned address and public key from xrp app
Browse files Browse the repository at this point in the history
  • Loading branch information
muzaffarbhat07 committed Oct 5, 2024
1 parent d242be6 commit 27f2925
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,5 +62,6 @@ export const getUserVerifiedPublicKey = async (

return {
publicKey: result.publicKeys[0],
address: result.addresses[0],
};
};
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@ export interface IGetUserVerifiedPublicKeyParams {

export interface IGetUserVerifiedPublicKeyResult {
publicKey: string;
address: string;
}

0 comments on commit 27f2925

Please sign in to comment.