@dynamic-labs-wallet/browser 1.0.99 → 1.0.101

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
@@ -4199,7 +4199,7 @@ class DynamicWalletClient {
4199
4199
  }
4200
4200
  // Note: the server signing party (wallet-service) selects the ed25519
4201
4201
  // protocol variant from its own persisted EAC, so it is NOT threaded here.
4202
- const serializedContext = context ? JSON.parse(JSON.stringify(context, (_key, value)=>typeof value === 'bigint' ? value.toString() : value)) : undefined;
4202
+ const serializedContext = context ? JSON.parse(JSON.stringify(context, (_key, value)=>typeof value === 'bigint' ? String(value) : value)) : undefined;
4203
4203
  const useHttpTransport = this.featureFlags[core.FEATURE_FLAGS.ENABLE_HTTP_WAAS_TRANSPORT] === true && this.featureFlags[core.FEATURE_FLAGS.ENABLE_HTTP_WAAS_TRANSPORT_SIGNMESSAGE] === true;
4204
4204
  const params = {
4205
4205
  walletId,
package/index.esm.js CHANGED
@@ -4200,7 +4200,7 @@ class DynamicWalletClient {
4200
4200
  }
4201
4201
  // Note: the server signing party (wallet-service) selects the ed25519
4202
4202
  // protocol variant from its own persisted EAC, so it is NOT threaded here.
4203
- const serializedContext = context ? JSON.parse(JSON.stringify(context, (_key, value)=>typeof value === 'bigint' ? value.toString() : value)) : undefined;
4203
+ const serializedContext = context ? JSON.parse(JSON.stringify(context, (_key, value)=>typeof value === 'bigint' ? String(value) : value)) : undefined;
4204
4204
  const useHttpTransport = this.featureFlags[FEATURE_FLAGS.ENABLE_HTTP_WAAS_TRANSPORT] === true && this.featureFlags[FEATURE_FLAGS.ENABLE_HTTP_WAAS_TRANSPORT_SIGNMESSAGE] === true;
4205
4205
  const params = {
4206
4206
  walletId,
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@dynamic-labs-wallet/browser",
3
- "version": "1.0.99",
3
+ "version": "1.0.101",
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": "1.0.99",
7
+ "@dynamic-labs-wallet/core": "1.0.101",
8
8
  "@dynamic-labs-wallet/forward-mpc-client": "1.0.1",
9
- "@dynamic-labs-wallet/primitives": "1.0.99",
9
+ "@dynamic-labs-wallet/primitives": "1.0.101",
10
10
  "@dynamic-labs/sdk-api-core": "^0.0.1093",
11
11
  "@noble/curves": "1.8.0",
12
12
  "argon2id": "1.0.1",