@dynamic-labs/bitcoin 4.63.1 → 4.65.0

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,27 @@
1
1
 
2
+ ## [4.65.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.64.0...v4.65.0) (2026-02-27)
3
+
4
+
5
+ ### Features
6
+
7
+ * add CSP nonce support for style and link tags ([#10514](https://github.com/dynamic-labs/dynamic-auth/issues/10514)) ([62128f5](https://github.com/dynamic-labs/dynamic-auth/commit/62128f5eddfd2a037c2ed6e9320b5009d350c0b5))
8
+ * add setPassword method for initial wallet password setup ([#10534](https://github.com/dynamic-labs/dynamic-auth/issues/10534)) ([87d1e5f](https://github.com/dynamic-labs/dynamic-auth/commit/87d1e5f3c41fe4417320f6971566526e8bf07e99))
9
+ * add step-up authentication and walletsVerify API ([#10482](https://github.com/dynamic-labs/dynamic-auth/issues/10482)) ([e762a63](https://github.com/dynamic-labs/dynamic-auth/commit/e762a634e9782c34926f5947db5446ad95617064))
10
+
11
+
12
+ ### Bug Fixes
13
+
14
+ * **react-native:** ensure items are saved to storage successfully ([#10538](https://github.com/dynamic-labs/dynamic-auth/issues/10538)) ([60bfd5e](https://github.com/dynamic-labs/dynamic-auth/commit/60bfd5e4bf1e7265e754c222839662ff615495b2))
15
+ * **sdk-react-core:** add stellar to compareChains to prevent duplicate wallet creation ([#10526](https://github.com/dynamic-labs/dynamic-auth/issues/10526)) ([89f4498](https://github.com/dynamic-labs/dynamic-auth/commit/89f449892a5153dc8032e0e8ea61cf453e0a2b23))
16
+ * show password setup button for all WaaS wallets regardless of passcodeRequired ([#10532](https://github.com/dynamic-labs/dynamic-auth/issues/10532)) ([615cbf2](https://github.com/dynamic-labs/dynamic-auth/commit/615cbf25fcf95cb5b82a118a2d5d37285e8b5b83))
17
+
18
+ ## [4.64.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.63.1...v4.64.0) (2026-02-25)
19
+
20
+
21
+ ### Features
22
+
23
+ * add addTrustline method to the stellar wallet ([#10510](https://github.com/dynamic-labs/dynamic-auth/issues/10510)) ([e8690e8](https://github.com/dynamic-labs/dynamic-auth/commit/e8690e821dfe867355618d970380568487c3dd36))
24
+
2
25
  ### [4.63.1](https://github.com/dynamic-labs/dynamic-auth/compare/v4.63.0...v4.63.1) (2026-02-24)
3
26
 
4
27
 
package/package.cjs CHANGED
@@ -3,6 +3,6 @@
3
3
 
4
4
  Object.defineProperty(exports, '__esModule', { value: true });
5
5
 
6
- var version = "4.63.1";
6
+ var version = "4.65.0";
7
7
 
8
8
  exports.version = version;
package/package.js CHANGED
@@ -1,4 +1,4 @@
1
1
  'use client'
2
- var version = "4.63.1";
2
+ var version = "4.65.0";
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.63.1",
3
+ "version": "4.65.0",
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,7 +18,7 @@
18
18
  },
19
19
  "homepage": "https://www.dynamic.xyz/",
20
20
  "dependencies": {
21
- "@dynamic-labs-wallet/browser-wallet-client": "0.0.276",
21
+ "@dynamic-labs-wallet/browser-wallet-client": "0.0.286",
22
22
  "@bitcoinerlab/secp256k1": "1.1.1",
23
23
  "@btckit/types": "0.0.19",
24
24
  "@dynamic-labs/sdk-api-core": "0.0.875",
@@ -28,13 +28,13 @@
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.63.1",
32
- "@dynamic-labs/logger": "4.63.1",
33
- "@dynamic-labs/types": "4.63.1",
34
- "@dynamic-labs/utils": "4.63.1",
35
- "@dynamic-labs/waas": "4.63.1",
36
- "@dynamic-labs/wallet-book": "4.63.1",
37
- "@dynamic-labs/wallet-connector-core": "4.63.1",
31
+ "@dynamic-labs/assert-package-version": "4.65.0",
32
+ "@dynamic-labs/logger": "4.65.0",
33
+ "@dynamic-labs/types": "4.65.0",
34
+ "@dynamic-labs/utils": "4.65.0",
35
+ "@dynamic-labs/waas": "4.65.0",
36
+ "@dynamic-labs/wallet-book": "4.65.0",
37
+ "@dynamic-labs/wallet-connector-core": "4.65.0",
38
38
  "eventemitter3": "5.0.1"
39
39
  },
40
40
  "peerDependencies": {}
@@ -118,6 +118,15 @@ declare const DynamicWaasBitcoinConnector_base: (abstract new (...args: any[]) =
118
118
  existingPassword?: string | undefined;
119
119
  newPassword: string;
120
120
  }): Promise<void>;
121
+ setPassword({ accountAddress, newPassword, }: {
122
+ accountAddress: string;
123
+ newPassword: string;
124
+ }): Promise<void>;
125
+ /**
126
+ * Maps Dynamic's networkId to BitcoinNetwork enum for internal WaaS API calls
127
+ * Uses the current network from getNetwork() to determine the BitcoinNetwork value
128
+ * @returns The corresponding BitcoinNetwork enum value for the current network
129
+ */
121
130
  signRawMessage({ accountAddress, message, password, }: {
122
131
  accountAddress: string;
123
132
  message: string;