@dynamic-labs/solana 0.18.18 → 0.18.20

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.
package/CHANGELOG.md CHANGED
@@ -1,4 +1,18 @@
1
1
 
2
+ ### [0.18.20](https://github.com/dynamic-labs/DynamicAuth/compare/v0.18.19...v0.18.20) (2023-09-25)
3
+
4
+
5
+ ### Bug Fixes
6
+
7
+ * signing messages with backpack ([#3399](https://github.com/dynamic-labs/DynamicAuth/issues/3399)) ([d56fb4d](https://github.com/dynamic-labs/DynamicAuth/commit/d56fb4d3f0eacec5ee9c1090da90946beb6874e1))
8
+
9
+ ### [0.18.19](https://github.com/dynamic-labs/DynamicAuth/compare/v0.18.18...v0.18.19) (2023-09-22)
10
+
11
+
12
+ ### Bug Fixes
13
+
14
+ * pass the network param on wallet transfers ([#3307](https://github.com/dynamic-labs/DynamicAuth/issues/3307)) ([#3384](https://github.com/dynamic-labs/DynamicAuth/issues/3384)) ([f116695](https://github.com/dynamic-labs/DynamicAuth/commit/f116695d27bac145913f2cfbd28725b582d57f61))
15
+
2
16
  ### [0.18.18](https://github.com/dynamic-labs/DynamicAuth/compare/v0.18.17...v0.18.18) (2023-09-20)
3
17
 
4
18
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/solana",
3
- "version": "0.18.18",
3
+ "version": "0.18.20",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/dynamic-labs/DynamicAuth.git",
@@ -27,11 +27,11 @@
27
27
  },
28
28
  "dependencies": {
29
29
  "@solana/web3.js": "1.70.1",
30
- "@dynamic-labs/rpc-providers": "0.18.18",
31
- "@dynamic-labs/types": "0.18.18",
32
- "@dynamic-labs/utils": "0.18.18",
33
- "@dynamic-labs/wallet-book": "0.18.18",
34
- "@dynamic-labs/wallet-connector-core": "0.18.18"
30
+ "@dynamic-labs/rpc-providers": "0.18.20",
31
+ "@dynamic-labs/types": "0.18.20",
32
+ "@dynamic-labs/utils": "0.18.20",
33
+ "@dynamic-labs/wallet-book": "0.18.20",
34
+ "@dynamic-labs/wallet-connector-core": "0.18.20"
35
35
  },
36
36
  "peerDependencies": {}
37
37
  }
@@ -39,7 +39,7 @@ class BackpackSol extends InjectedWalletBase.InjectedWalletBase {
39
39
  if (!provider) {
40
40
  return undefined;
41
41
  }
42
- const signedMessage = (yield provider.signMessage(Buffer.from(messageToSign, 'utf8'), publicAddress));
42
+ const signedMessage = (yield provider.signMessage(Buffer.from(messageToSign, 'utf8')));
43
43
  return utils.bufferToBase64(signedMessage);
44
44
  });
45
45
  }
@@ -35,7 +35,7 @@ class BackpackSol extends InjectedWalletBase {
35
35
  if (!provider) {
36
36
  return undefined;
37
37
  }
38
- const signedMessage = (yield provider.signMessage(Buffer.from(messageToSign, 'utf8'), publicAddress));
38
+ const signedMessage = (yield provider.signMessage(Buffer.from(messageToSign, 'utf8')));
39
39
  return bufferToBase64(signedMessage);
40
40
  });
41
41
  }