@dynamic-labs/bitcoin 4.92.0 → 4.92.2
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,23 @@
|
|
|
1
1
|
|
|
2
|
+
### [4.92.2](https://github.com/dynamic-labs/dynamic-auth/compare/v4.92.1...v4.92.2) (2026-07-09)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
* engage captcha during step-up OTP re-auth ([#11879](https://github.com/dynamic-labs/dynamic-auth/issues/11879)) ([585460a](https://github.com/dynamic-labs/dynamic-auth/commit/585460a8976803a8ed0aad16a4a00047bd6c115a))
|
|
8
|
+
* **waas:** gate v1 wallet upgrade on recovery for email-only wallets ([#11897](https://github.com/dynamic-labs/dynamic-auth/issues/11897)) ([5a6f0c6](https://github.com/dynamic-labs/dynamic-auth/commit/5a6f0c6bf3120e59cf502004d09fae56f193e977))
|
|
9
|
+
|
|
10
|
+
### [4.92.1](https://github.com/dynamic-labs/dynamic-auth/compare/v4.92.0...v4.92.1) (2026-07-09)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* **ethereum:** fire in-app-browser redirect on sign for injected EVM wallets that use in-app-browser experience ([#11888](https://github.com/dynamic-labs/dynamic-auth/issues/11888)) ([5116d91](https://github.com/dynamic-labs/dynamic-auth/commit/5116d91ab2c71000a490d72c5d278549d4d8ae9a))
|
|
16
|
+
* **sdk-react-core:** show clear message for Phantom redirect signing failures (v4 backport) ([#11886](https://github.com/dynamic-labs/dynamic-auth/issues/11886)) ([60ac897](https://github.com/dynamic-labs/dynamic-auth/commit/60ac897ba81f7758ccd7a05f97b619785e1f50a7))
|
|
17
|
+
* **social:** use redirect strategy for step-up OAuth on mobile [V4 backport] ([#11881](https://github.com/dynamic-labs/dynamic-auth/issues/11881)) ([42a202e](https://github.com/dynamic-labs/dynamic-auth/commit/42a202e6255de8db73df02eff37c0b10b24fef1a))
|
|
18
|
+
* **solana:** fire in-app-browser redirect on sign and wallet switch ([#11871](https://github.com/dynamic-labs/dynamic-auth/issues/11871)) ([4e2d6b7](https://github.com/dynamic-labs/dynamic-auth/commit/4e2d6b7ac8fdef5bf7c62b8a726ecaef1c6210ec))
|
|
19
|
+
* **solana:** resolve Phantom/Backpack provider collision and Backpack >=0.10.x connect hangs ([#11856](https://github.com/dynamic-labs/dynamic-auth/issues/11856)) ([#11882](https://github.com/dynamic-labs/dynamic-auth/issues/11882)) ([5784aff](https://github.com/dynamic-labs/dynamic-auth/commit/5784aff9641bbc85445fb466f3ab1d6a14331e73))
|
|
20
|
+
|
|
2
21
|
## [4.92.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.91.6...v4.92.0) (2026-07-08)
|
|
3
22
|
|
|
4
23
|
|
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.92.
|
|
3
|
+
"version": "4.92.2",
|
|
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.92.
|
|
33
|
-
"@dynamic-labs/logger": "4.92.
|
|
34
|
-
"@dynamic-labs/types": "4.92.
|
|
35
|
-
"@dynamic-labs/utils": "4.92.
|
|
36
|
-
"@dynamic-labs/waas": "4.92.
|
|
37
|
-
"@dynamic-labs/wallet-book": "4.92.
|
|
38
|
-
"@dynamic-labs/wallet-connector-core": "4.92.
|
|
32
|
+
"@dynamic-labs/assert-package-version": "4.92.2",
|
|
33
|
+
"@dynamic-labs/logger": "4.92.2",
|
|
34
|
+
"@dynamic-labs/types": "4.92.2",
|
|
35
|
+
"@dynamic-labs/utils": "4.92.2",
|
|
36
|
+
"@dynamic-labs/waas": "4.92.2",
|
|
37
|
+
"@dynamic-labs/wallet-book": "4.92.2",
|
|
38
|
+
"@dynamic-labs/wallet-connector-core": "4.92.2",
|
|
39
39
|
"eventemitter3": "5.0.1"
|
|
40
40
|
},
|
|
41
41
|
"peerDependencies": {}
|
|
@@ -22,6 +22,10 @@ declare const DynamicWaasBitcoinConnector_base: (abstract new (...args: any[]) =
|
|
|
22
22
|
scope: TokenScope;
|
|
23
23
|
}) => Promise<string | undefined>) | undefined;
|
|
24
24
|
onUnauthorized?: (() => void | Promise<void>) | undefined;
|
|
25
|
+
/**
|
|
26
|
+
* Bitcoin connector for Dynamic WaaS (Wallet as a Service)
|
|
27
|
+
* Extends BitcoinWalletConnector with WaaS functionality for Bitcoin transactions
|
|
28
|
+
*/
|
|
25
29
|
environmentId?: string | undefined;
|
|
26
30
|
baseApiUrl?: string | undefined;
|
|
27
31
|
relayUrl?: string | undefined;
|
|
@@ -96,6 +100,11 @@ declare const DynamicWaasBitcoinConnector_base: (abstract new (...args: any[]) =
|
|
|
96
100
|
thresholdSignatureScheme?: string | undefined;
|
|
97
101
|
publicAddressCheck?: string | undefined;
|
|
98
102
|
addressType?: string | undefined;
|
|
103
|
+
/**
|
|
104
|
+
* Gets the current Bitcoin network
|
|
105
|
+
* Always returns Dynamic's networkId (1 for mainnet)
|
|
106
|
+
* @returns The Dynamic networkId (1) for Bitcoin mainnet
|
|
107
|
+
*/
|
|
99
108
|
legacyWalletId?: string | undefined;
|
|
100
109
|
password?: string | undefined;
|
|
101
110
|
}): Promise<void>;
|
|
@@ -123,7 +132,11 @@ declare const DynamicWaasBitcoinConnector_base: (abstract new (...args: any[]) =
|
|
|
123
132
|
backupKeySharesToGoogleDrive({ accountAddress, password, googleDriveAccessToken, }: {
|
|
124
133
|
accountAddress: string;
|
|
125
134
|
password?: string | undefined;
|
|
126
|
-
googleDriveAccessToken?: string | undefined;
|
|
135
|
+
googleDriveAccessToken?: string | undefined; /**
|
|
136
|
+
* Gets block explorer URLs for the current network
|
|
137
|
+
* Returns mempool.space for Bitcoin transactions
|
|
138
|
+
* @returns Array containing mempool.space URL
|
|
139
|
+
*/
|
|
127
140
|
}): Promise<void>;
|
|
128
141
|
exportClientKeysharesFromGoogleDrive({ accountAddress, password, }: {
|
|
129
142
|
accountAddress: string;
|
|
@@ -160,8 +173,9 @@ declare const DynamicWaasBitcoinConnector_base: (abstract new (...args: any[]) =
|
|
|
160
173
|
accountAddress: string;
|
|
161
174
|
newPassword: string;
|
|
162
175
|
}): Promise<void>;
|
|
163
|
-
signRawMessage({ accountAddress, message, password, }: {
|
|
176
|
+
signRawMessage({ accountAddress, context, message, password, }: {
|
|
164
177
|
accountAddress: string;
|
|
178
|
+
context?: SignMessageContext | undefined;
|
|
165
179
|
message: string;
|
|
166
180
|
password?: string | undefined;
|
|
167
181
|
}): Promise<string>;
|