@dynamic-labs/bitcoin 4.60.0 → 4.60.1
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,19 @@
|
|
|
1
1
|
|
|
2
|
+
### [4.60.1](https://github.com/dynamic-labs/dynamic-auth/compare/v4.60.0...v4.60.1) (2026-02-09)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* add WAAS password handlers to DynamicContextProvider settings ([#10360](https://github.com/dynamic-labs/dynamic-auth/issues/10360)) ([5fc3fa7](https://github.com/dynamic-labs/dynamic-auth/commit/5fc3fa7148c53b64d36672be2d1ae629cb9cdaf8))
|
|
8
|
+
* improve password handling and UI for wallet protection ([#10386](https://github.com/dynamic-labs/dynamic-auth/issues/10386)) ([d27936e](https://github.com/dynamic-labs/dynamic-auth/commit/d27936e5bea37facceefccc0f2507d25a775ad33))
|
|
9
|
+
* pass authToken to wallet recovery operations ([#10379](https://github.com/dynamic-labs/dynamic-auth/issues/10379)) ([294efc7](https://github.com/dynamic-labs/dynamic-auth/commit/294efc7ab5816f63b7e5cc49a150cf9d34d300af))
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* override fast-xml-parser to 5.3.4 for CVE-2026-25128 ([#10381](https://github.com/dynamic-labs/dynamic-auth/issues/10381)) ([7fb4c22](https://github.com/dynamic-labs/dynamic-auth/commit/7fb4c221252b84bf38bbdab0b37b8f9a981ebe1a))
|
|
15
|
+
* unlock wallet view error handling and password error UI ([#10388](https://github.com/dynamic-labs/dynamic-auth/issues/10388)) ([5ffc8e1](https://github.com/dynamic-labs/dynamic-auth/commit/5ffc8e1e6dd0d7f32bb94c37ce3674be949f010b))
|
|
16
|
+
|
|
2
17
|
## [4.60.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.59.2...v4.60.0) (2026-02-05)
|
|
3
18
|
|
|
4
19
|
|
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.60.
|
|
3
|
+
"version": "4.60.1",
|
|
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",
|
|
@@ -18,23 +18,23 @@
|
|
|
18
18
|
},
|
|
19
19
|
"homepage": "https://www.dynamic.xyz/",
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@dynamic-labs-wallet/browser-wallet-client": "0.0.
|
|
21
|
+
"@dynamic-labs-wallet/browser-wallet-client": "0.0.260",
|
|
22
22
|
"@bitcoinerlab/secp256k1": "1.1.1",
|
|
23
23
|
"@btckit/types": "0.0.19",
|
|
24
|
-
"@dynamic-labs/sdk-api-core": "0.0.
|
|
24
|
+
"@dynamic-labs/sdk-api-core": "0.0.864",
|
|
25
25
|
"@wallet-standard/app": "1.0.1",
|
|
26
26
|
"@wallet-standard/base": "1.0.1",
|
|
27
27
|
"bitcoinjs-lib": "6.1.5",
|
|
28
28
|
"ecpair": "2.1.0",
|
|
29
29
|
"sats-connect": "4.2.1",
|
|
30
30
|
"jsontokens": "4.0.1",
|
|
31
|
-
"@dynamic-labs/assert-package-version": "4.60.
|
|
32
|
-
"@dynamic-labs/logger": "4.60.
|
|
33
|
-
"@dynamic-labs/types": "4.60.
|
|
34
|
-
"@dynamic-labs/utils": "4.60.
|
|
35
|
-
"@dynamic-labs/waas": "4.60.
|
|
36
|
-
"@dynamic-labs/wallet-book": "4.60.
|
|
37
|
-
"@dynamic-labs/wallet-connector-core": "4.60.
|
|
31
|
+
"@dynamic-labs/assert-package-version": "4.60.1",
|
|
32
|
+
"@dynamic-labs/logger": "4.60.1",
|
|
33
|
+
"@dynamic-labs/types": "4.60.1",
|
|
34
|
+
"@dynamic-labs/utils": "4.60.1",
|
|
35
|
+
"@dynamic-labs/waas": "4.60.1",
|
|
36
|
+
"@dynamic-labs/wallet-book": "4.60.1",
|
|
37
|
+
"@dynamic-labs/wallet-connector-core": "4.60.1",
|
|
38
38
|
"eventemitter3": "5.0.1"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {}
|
|
@@ -15,7 +15,7 @@ declare const DynamicWaasBitcoinConnector_base: (abstract new (...args: any[]) =
|
|
|
15
15
|
getMfaToken?: ((props?: {
|
|
16
16
|
mfaAction?: MFAAction | undefined;
|
|
17
17
|
} | undefined) => Promise<string | undefined>) | undefined;
|
|
18
|
-
|
|
18
|
+
getWalletPassword?: import("@dynamic-labs/wallet-connector-core").GetWalletPasswordFn | undefined;
|
|
19
19
|
getAuthToken?: (() => string) | undefined;
|
|
20
20
|
environmentId?: string | undefined;
|
|
21
21
|
baseApiUrl?: string | undefined;
|
|
@@ -32,7 +32,7 @@ declare const DynamicWaasBitcoinConnector_base: (abstract new (...args: any[]) =
|
|
|
32
32
|
setGetMfaTokenFunction(getMfaToken: (props?: {
|
|
33
33
|
mfaAction?: MFAAction | undefined;
|
|
34
34
|
} | undefined) => Promise<string | undefined>): void;
|
|
35
|
-
|
|
35
|
+
setGetWalletPasswordFunction(getWalletPassword: import("@dynamic-labs/wallet-connector-core").GetWalletPasswordFn): void;
|
|
36
36
|
getPasswordIfNeeded({ accountAddress, }: {
|
|
37
37
|
accountAddress: string;
|
|
38
38
|
}): Promise<string | undefined>;
|
|
@@ -108,7 +108,7 @@ declare const DynamicWaasBitcoinConnector_base: (abstract new (...args: any[]) =
|
|
|
108
108
|
}): Promise<void>;
|
|
109
109
|
updatePassword({ accountAddress, existingPassword, newPassword, }: {
|
|
110
110
|
accountAddress: string;
|
|
111
|
-
existingPassword
|
|
111
|
+
existingPassword?: string | undefined;
|
|
112
112
|
newPassword: string;
|
|
113
113
|
}): Promise<void>;
|
|
114
114
|
signRawMessage({ accountAddress, message, password, }: {
|
|
@@ -118,7 +118,7 @@ declare const DynamicWaasBitcoinConnector_base: (abstract new (...args: any[]) =
|
|
|
118
118
|
}): Promise<string>;
|
|
119
119
|
unlockWallet({ accountAddress, password, }: {
|
|
120
120
|
accountAddress: string;
|
|
121
|
-
password
|
|
121
|
+
password?: string | undefined;
|
|
122
122
|
}): Promise<import("@dynamic-labs-wallet/browser-wallet-client").GetWalletResponse>;
|
|
123
123
|
getWalletRecoveryState({ accountAddress, signedSessionId, }: {
|
|
124
124
|
accountAddress: string;
|