@dynamic-labs-wallet/sui 1.0.52 → 1.0.53

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/index.cjs CHANGED
@@ -336,7 +336,7 @@ class DynamicSuiWalletClient extends browser.DynamicWalletClient {
336
336
  if (!rawPublicKey || !clientKeyShares) {
337
337
  throw new Error(browser.ERROR_IMPORT_PRIVATE_KEY);
338
338
  }
339
- const { accountAddress } = await this.deriveAccountAddress({
339
+ const { accountAddress } = this.deriveAccountAddress({
340
340
  rawPublicKey: rawPublicKey
341
341
  });
342
342
  if (accountAddress !== publicKey) {
package/index.esm.js CHANGED
@@ -334,7 +334,7 @@ class DynamicSuiWalletClient extends DynamicWalletClient {
334
334
  if (!rawPublicKey || !clientKeyShares) {
335
335
  throw new Error(ERROR_IMPORT_PRIVATE_KEY);
336
336
  }
337
- const { accountAddress } = await this.deriveAccountAddress({
337
+ const { accountAddress } = this.deriveAccountAddress({
338
338
  rawPublicKey: rawPublicKey
339
339
  });
340
340
  if (accountAddress !== publicKey) {
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@dynamic-labs-wallet/sui",
3
- "version": "1.0.52",
3
+ "version": "1.0.53",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "dependencies": {
7
- "@dynamic-labs-wallet/browser": "1.0.52",
7
+ "@dynamic-labs-wallet/browser": "1.0.53",
8
8
  "@mysten/sui": "1.26.0",
9
9
  "@noble/hashes": "1.7.1",
10
10
  "bech32-converting": "^1.0.9",