@dynamic-labs/bitcoin 4.91.4 → 4.91.5
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,13 @@
|
|
|
1
1
|
|
|
2
|
+
### [4.91.5](https://github.com/dynamic-labs/dynamic-auth/compare/v4.91.4...v4.91.5) (2026-07-02)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
* 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))
|
|
8
|
+
* **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))
|
|
9
|
+
* **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))
|
|
10
|
+
|
|
2
11
|
### [4.91.4](https://github.com/dynamic-labs/dynamic-auth/compare/v4.91.3...v4.91.4) (2026-07-01)
|
|
3
12
|
|
|
4
13
|
|
package/package.cjs
CHANGED
package/package.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynamic-labs/bitcoin",
|
|
3
|
-
"version": "4.91.
|
|
3
|
+
"version": "4.91.5",
|
|
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.
|
|
33
|
-
"@dynamic-labs/logger": "4.91.
|
|
34
|
-
"@dynamic-labs/types": "4.91.
|
|
35
|
-
"@dynamic-labs/utils": "4.91.
|
|
36
|
-
"@dynamic-labs/waas": "4.91.
|
|
37
|
-
"@dynamic-labs/wallet-book": "4.91.
|
|
38
|
-
"@dynamic-labs/wallet-connector-core": "4.91.
|
|
32
|
+
"@dynamic-labs/assert-package-version": "4.91.5",
|
|
33
|
+
"@dynamic-labs/logger": "4.91.5",
|
|
34
|
+
"@dynamic-labs/types": "4.91.5",
|
|
35
|
+
"@dynamic-labs/utils": "4.91.5",
|
|
36
|
+
"@dynamic-labs/waas": "4.91.5",
|
|
37
|
+
"@dynamic-labs/wallet-book": "4.91.5",
|
|
38
|
+
"@dynamic-labs/wallet-connector-core": "4.91.5",
|
|
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;
|