@dynamic-labs/bitcoin 4.91.4 → 4.91.6

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,20 @@
1
1
 
2
+ ### [4.91.6](https://github.com/dynamic-labs/dynamic-auth/compare/v4.91.5...v4.91.6) (2026-07-03)
3
+
4
+
5
+ ### Bug Fixes
6
+
7
+ * **react-native:** ensure webview loads on cold start ([#11787](https://github.com/dynamic-labs/dynamic-auth/issues/11787)) ([8f3dc8e](https://github.com/dynamic-labs/dynamic-auth/commit/8f3dc8e2a7de06f012ea6e922d4e76aee1c84c1a))
8
+
9
+ ### [4.91.5](https://github.com/dynamic-labs/dynamic-auth/compare/v4.91.4...v4.91.5) (2026-07-02)
10
+
11
+
12
+ ### Bug Fixes
13
+
14
+ * revoke WaaS signed-session callback on client rebuild to stop iOS nonce race ([#11766](https://github.com/dynamic-labs/dynamic-auth/issues/11766)) ([c895b5d](https://github.com/dynamic-labs/dynamic-auth/commit/c895b5d0987d62a9f5597741dbeae0ec7fedfe5b))
15
+ * **sdk-react-core:** allow sendOneTimeCode to target non-primary chain wallets ([#11777](https://github.com/dynamic-labs/dynamic-auth/issues/11777)) ([63f82af](https://github.com/dynamic-labs/dynamic-auth/commit/63f82af7c52be595bc2948ec88ee9c919ac9275a))
16
+ * **webview-controller:** resolve post-login wallet race in Viem and ZeroDev controllers ([#11774](https://github.com/dynamic-labs/dynamic-auth/issues/11774)) ([95ed26e](https://github.com/dynamic-labs/dynamic-auth/commit/95ed26eee09d9aff5a5af6517ab7e1360ef5f337))
17
+
2
18
  ### [4.91.4](https://github.com/dynamic-labs/dynamic-auth/compare/v4.91.3...v4.91.4) (2026-07-01)
3
19
 
4
20
 
package/package.cjs CHANGED
@@ -3,6 +3,6 @@
3
3
 
4
4
  Object.defineProperty(exports, '__esModule', { value: true });
5
5
 
6
- var version = "4.91.4";
6
+ var version = "4.91.6";
7
7
 
8
8
  exports.version = version;
package/package.js CHANGED
@@ -1,4 +1,4 @@
1
1
  'use client'
2
- var version = "4.91.4";
2
+ var version = "4.91.6";
3
3
 
4
4
  export { version };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/bitcoin",
3
- "version": "4.91.4",
3
+ "version": "4.91.6",
4
4
  "description": "A React SDK for implementing wallet web3 authentication and authorization to your website.",
5
5
  "author": "Dynamic Labs, Inc.",
6
6
  "license": "MIT",
@@ -29,13 +29,13 @@
29
29
  "ecpair": "2.1.0",
30
30
  "sats-connect": "4.2.1",
31
31
  "jsontokens": "4.0.1",
32
- "@dynamic-labs/assert-package-version": "4.91.4",
33
- "@dynamic-labs/logger": "4.91.4",
34
- "@dynamic-labs/types": "4.91.4",
35
- "@dynamic-labs/utils": "4.91.4",
36
- "@dynamic-labs/waas": "4.91.4",
37
- "@dynamic-labs/wallet-book": "4.91.4",
38
- "@dynamic-labs/wallet-connector-core": "4.91.4",
32
+ "@dynamic-labs/assert-package-version": "4.91.6",
33
+ "@dynamic-labs/logger": "4.91.6",
34
+ "@dynamic-labs/types": "4.91.6",
35
+ "@dynamic-labs/utils": "4.91.6",
36
+ "@dynamic-labs/waas": "4.91.6",
37
+ "@dynamic-labs/wallet-book": "4.91.6",
38
+ "@dynamic-labs/wallet-connector-core": "4.91.6",
39
39
  "eventemitter3": "5.0.1"
40
40
  },
41
41
  "peerDependencies": {}
@@ -27,6 +27,7 @@ declare const DynamicWaasBitcoinConnector_base: (abstract new (...args: any[]) =
27
27
  relayUrl?: string | undefined;
28
28
  baseClientKeysharesRelayApiUrl?: string | undefined;
29
29
  dynamicWaasClient: import("@dynamic-labs-wallet/browser-wallet-client").DynamicWalletClient | undefined;
30
+ revokeSignedSession: (() => void) | undefined;
30
31
  chainName: string;
31
32
  authMode: "cookie" | "header";
32
33
  logger: Logger;
@@ -58,6 +59,9 @@ declare const DynamicWaasBitcoinConnector_base: (abstract new (...args: any[]) =
58
59
  accountAddress: string;
59
60
  password?: string | undefined;
60
61
  }): Promise<void>;
62
+ createRevocableSignedSessionCallback(): {
63
+ getSignedSessionId: () => Promise<string>;
64
+ };
61
65
  createDynamicWaasClient(traceContext?: import("dist/packages/waas/utils/instrumentation").TraceContext | undefined): Promise<import("@dynamic-labs-wallet/browser-wallet-client").DynamicWalletClient>;
62
66
  getWaasWalletClient(traceContext?: import("dist/packages/waas/utils/instrumentation").TraceContext | undefined, { forceRebuild }?: {
63
67
  forceRebuild?: boolean | undefined;
@@ -118,7 +122,11 @@ declare const DynamicWaasBitcoinConnector_base: (abstract new (...args: any[]) =
118
122
  displayContainer: HTMLElement;
119
123
  }): Promise<void>;
120
124
  hideICloudSignIn(): Promise<void>;
121
- isICloudAuthenticated(): Promise<boolean>;
125
+ isICloudAuthenticated(): Promise<boolean>; /**
126
+ * Gets block explorer URLs for the current network
127
+ * Returns mempool.space for Bitcoin transactions
128
+ * @returns Array containing mempool.space URL
129
+ */
122
130
  refreshWalletAccountShares({ accountAddress, password, }: {
123
131
  accountAddress: string;
124
132
  password?: string | undefined;