@tonconnect/sdk 0.0.23 → 0.0.24

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5,6 +5,6 @@ export interface Wallet {
5
5
  provider: 'http' | 'injected';
6
6
  account: Account;
7
7
  connectItems?: {
8
- tonProof?: TonProofItemReply['proof'];
8
+ tonProof?: TonProofItemReply;
9
9
  };
10
10
  }
@@ -191,7 +191,7 @@ class TonConnect {
191
191
  };
192
192
  if (tonProofItem) {
193
193
  wallet.connectItems = {
194
- tonProof: tonProofItem.proof
194
+ tonProof: tonProofItem
195
195
  };
196
196
  }
197
197
  this.wallet = wallet;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tonconnect/sdk",
3
- "version": "0.0.23",
3
+ "version": "0.0.24",
4
4
  "scripts": {
5
5
  "build": "npx rimraf lib && ttsc",
6
6
  "build:production": "npx rimraf lib && ttsc --sourceMap false"
@@ -28,7 +28,7 @@
28
28
  "tweetnacl": "^1.0.3",
29
29
  "eventsource": "^2.0.2",
30
30
  "node-fetch": "^2.6.7",
31
- "@tonconnect/protocol": "^0.0.11"
31
+ "@tonconnect/protocol": "^0.0.12"
32
32
  },
33
33
  "files": [
34
34
  "lib"