@dynamic-labs-wallet/browser-wallet-client 1.0.113 → 1.0.115

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
@@ -1723,7 +1723,7 @@ class DynamicWalletClient extends IframeManager {
1723
1723
  return this.withHandler((handler)=>handler.signTypedData({
1724
1724
  chainName: this.chainName,
1725
1725
  accountAddress,
1726
- typedData: JSON.stringify(typedData),
1726
+ typedData: JSON.stringify(typedData, (_key, value)=>typeof value === 'bigint' ? String(value) : value),
1727
1727
  password,
1728
1728
  signedSessionId,
1729
1729
  authToken,
package/index.esm.js CHANGED
@@ -1722,7 +1722,7 @@ class DynamicWalletClient extends IframeManager {
1722
1722
  return this.withHandler((handler)=>handler.signTypedData({
1723
1723
  chainName: this.chainName,
1724
1724
  accountAddress,
1725
- typedData: JSON.stringify(typedData),
1725
+ typedData: JSON.stringify(typedData, (_key, value)=>typeof value === 'bigint' ? String(value) : value),
1726
1726
  password,
1727
1727
  signedSessionId,
1728
1728
  authToken,
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@dynamic-labs-wallet/browser-wallet-client",
3
- "version": "1.0.113",
3
+ "version": "1.0.115",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "dependencies": {
7
- "@dynamic-labs-wallet/core": "1.0.113",
7
+ "@dynamic-labs-wallet/core": "1.0.115",
8
8
  "@dynamic-labs/logger": "^5.0.0",
9
9
  "@dynamic-labs/message-transport": "^5.0.0"
10
10
  },