Skip to content

Commit

Permalink
fix: sign message callBack url wrong schema
Browse files Browse the repository at this point in the history
  • Loading branch information
JordiParraCrespo committed Dec 5, 2024
1 parent d6377ca commit c04c1bb
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@ This document logs notable, developer-facing updates to the NEAR Mobile Wallet.

- Document resolved bugs for improved performance and security.

## 1.8.2

### 🐛 Bug Fixes

- Fix wrong schema for callback url [fix/sign-message-wrong-schema](https://github.com/Peersyst/near-mobile-wallet/pull/567)

## 1.8.1

### 🐛 Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.8.0",
"version": "1.8.2",
"name": "near-mobile-wallet",
"private": true,
"main": "./index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/module/sdk/NearSdkService/NearSdkService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1218,7 +1218,7 @@ export class NearSDKService {
message: "string",
nonce: { array: { type: "u8", len: 32 } },
recipient: "string",
callbackUrl: { option: { struct: { callbackUrl: "string" } } },
callbackUrl: { option: "string" },
},
},
payload,
Expand Down

0 comments on commit c04c1bb

Please sign in to comment.