@dynamic-labs-wallet/browser 0.0.307 → 0.0.308

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.js CHANGED
@@ -2331,7 +2331,7 @@ class DynamicWalletClient {
2331
2331
  message: messageToSign,
2332
2332
  relayDomain: this.baseMPCRelayApiUrl || '',
2333
2333
  signingAlgo: signingAlgo,
2334
- hashAlgo: chainName === 'EVM' && !isFormatted ? 'keccak256' : undefined,
2334
+ hashAlgo: (chainName === 'EVM' || chainName === 'TEMPO') && !isFormatted ? 'keccak256' : undefined,
2335
2335
  derivationPath: derivationPath,
2336
2336
  roomUuid: roomId,
2337
2337
  tweak: tweak,
package/index.esm.js CHANGED
@@ -2332,7 +2332,7 @@ class DynamicWalletClient {
2332
2332
  message: messageToSign,
2333
2333
  relayDomain: this.baseMPCRelayApiUrl || '',
2334
2334
  signingAlgo: signingAlgo,
2335
- hashAlgo: chainName === 'EVM' && !isFormatted ? 'keccak256' : undefined,
2335
+ hashAlgo: (chainName === 'EVM' || chainName === 'TEMPO') && !isFormatted ? 'keccak256' : undefined,
2336
2336
  derivationPath: derivationPath,
2337
2337
  roomUuid: roomId,
2338
2338
  tweak: tweak,
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@dynamic-labs-wallet/browser",
3
- "version": "0.0.307",
3
+ "version": "0.0.308",
4
4
  "license": "Licensed under the Dynamic Labs, Inc. Terms Of Service (https://www.dynamic.xyz/terms-conditions)",
5
5
  "type": "module",
6
6
  "dependencies": {
7
- "@dynamic-labs-wallet/core": "0.0.307",
7
+ "@dynamic-labs-wallet/core": "0.0.308",
8
8
  "@dynamic-labs/logger": "^4.25.3",
9
9
  "@dynamic-labs/sdk-api-core": "^0.0.900",
10
10
  "argon2id": "1.0.1",