@dynamic-labs-wallet/btc 0.0.246 → 0.0.248

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/index.cjs.js CHANGED
@@ -835,11 +835,12 @@ class DynamicBtcWalletClient extends browser.DynamicWalletClient {
835
835
  addressType: addressType,
836
836
  network
837
837
  });
838
- // Store client key shares to localStorage
839
- await this.setClientKeySharesToLocalStorage({
838
+ // Store client key shares to storage
839
+ await this.setClientKeySharesToStorage({
840
840
  accountAddress,
841
841
  clientKeyShares,
842
- overwriteOrMerge: 'overwrite'
842
+ overwriteOrMerge: 'overwrite',
843
+ chainName: this.chainName
843
844
  });
844
845
  // Store encrypted backup
845
846
  await this.storeEncryptedBackupByWalletWithRetry({
@@ -928,8 +929,9 @@ class DynamicBtcWalletClient extends browser.DynamicWalletClient {
928
929
  if (!addressType) {
929
930
  addressType = getAddressTypeFromDerivationPath(derivationPath);
930
931
  }
931
- const clientKeyShares = await this.getClientKeySharesFromLocalStorage({
932
- accountAddress
932
+ const clientKeyShares = await this.getClientKeySharesFromStorage({
933
+ accountAddress,
934
+ chainName: this.chainName
933
935
  });
934
936
  if (!clientKeyShares || clientKeyShares.length === 0) {
935
937
  throw new Error('No key shares found');
@@ -1142,10 +1144,11 @@ class DynamicBtcWalletClient extends browser.DynamicWalletClient {
1142
1144
  if (publicAddressCheck && accountAddress !== publicAddressCheck) {
1143
1145
  throw new Error(`Public address mismatch: derived address ${accountAddress} !== public address ${publicAddressCheck}`);
1144
1146
  }
1145
- await this.setClientKeySharesToLocalStorage({
1147
+ await this.setClientKeySharesToStorage({
1146
1148
  accountAddress,
1147
1149
  clientKeyShares,
1148
- overwriteOrMerge: 'overwrite'
1150
+ overwriteOrMerge: 'overwrite',
1151
+ chainName: this.chainName
1149
1152
  });
1150
1153
  await this.storeEncryptedBackupByWalletWithRetry({
1151
1154
  accountAddress,
@@ -1235,8 +1238,9 @@ class DynamicBtcWalletClient extends browser.DynamicWalletClient {
1235
1238
  network
1236
1239
  };
1237
1240
  const psbt = bitcoin__namespace.Psbt.fromBase64(transaction);
1238
- const clientKeyShares = await this.getClientKeySharesFromLocalStorage({
1239
- accountAddress: senderAddress
1241
+ const clientKeyShares = await this.getClientKeySharesFromStorage({
1242
+ accountAddress: senderAddress,
1243
+ chainName: this.chainName
1240
1244
  });
1241
1245
  if (!clientKeyShares || clientKeyShares.length === 0) {
1242
1246
  throw new Error('No key shares found');
@@ -1474,7 +1478,7 @@ class DynamicBtcWalletClient extends browser.DynamicWalletClient {
1474
1478
  /**
1475
1479
  * Creates a new instance of DynamicBtcWalletClient
1476
1480
  * @param props - The client properties
1477
- */ constructor({ environmentId, authToken, baseApiUrl, baseMPCRelayApiUrl, storageKey, debug, featureFlags, authMode = browser.AuthMode.HEADER, sdkVersion, forwardMPCClient }){
1481
+ */ constructor({ environmentId, authToken, baseApiUrl, baseMPCRelayApiUrl, storageKey, debug, featureFlags, authMode = browser.AuthMode.HEADER, sdkVersion, forwardMPCClient }, internalOptions){
1478
1482
  super({
1479
1483
  environmentId,
1480
1484
  authToken,
@@ -1486,7 +1490,7 @@ class DynamicBtcWalletClient extends browser.DynamicWalletClient {
1486
1490
  authMode,
1487
1491
  sdkVersion,
1488
1492
  forwardMPCClient
1489
- }), this.chainName = 'BTC';
1493
+ }, internalOptions), this.chainName = 'BTC';
1490
1494
  }
1491
1495
  }
1492
1496
 
package/index.esm.js CHANGED
@@ -815,11 +815,12 @@ class DynamicBtcWalletClient extends DynamicWalletClient {
815
815
  addressType: addressType,
816
816
  network
817
817
  });
818
- // Store client key shares to localStorage
819
- await this.setClientKeySharesToLocalStorage({
818
+ // Store client key shares to storage
819
+ await this.setClientKeySharesToStorage({
820
820
  accountAddress,
821
821
  clientKeyShares,
822
- overwriteOrMerge: 'overwrite'
822
+ overwriteOrMerge: 'overwrite',
823
+ chainName: this.chainName
823
824
  });
824
825
  // Store encrypted backup
825
826
  await this.storeEncryptedBackupByWalletWithRetry({
@@ -908,8 +909,9 @@ class DynamicBtcWalletClient extends DynamicWalletClient {
908
909
  if (!addressType) {
909
910
  addressType = getAddressTypeFromDerivationPath(derivationPath);
910
911
  }
911
- const clientKeyShares = await this.getClientKeySharesFromLocalStorage({
912
- accountAddress
912
+ const clientKeyShares = await this.getClientKeySharesFromStorage({
913
+ accountAddress,
914
+ chainName: this.chainName
913
915
  });
914
916
  if (!clientKeyShares || clientKeyShares.length === 0) {
915
917
  throw new Error('No key shares found');
@@ -1122,10 +1124,11 @@ class DynamicBtcWalletClient extends DynamicWalletClient {
1122
1124
  if (publicAddressCheck && accountAddress !== publicAddressCheck) {
1123
1125
  throw new Error(`Public address mismatch: derived address ${accountAddress} !== public address ${publicAddressCheck}`);
1124
1126
  }
1125
- await this.setClientKeySharesToLocalStorage({
1127
+ await this.setClientKeySharesToStorage({
1126
1128
  accountAddress,
1127
1129
  clientKeyShares,
1128
- overwriteOrMerge: 'overwrite'
1130
+ overwriteOrMerge: 'overwrite',
1131
+ chainName: this.chainName
1129
1132
  });
1130
1133
  await this.storeEncryptedBackupByWalletWithRetry({
1131
1134
  accountAddress,
@@ -1215,8 +1218,9 @@ class DynamicBtcWalletClient extends DynamicWalletClient {
1215
1218
  network
1216
1219
  };
1217
1220
  const psbt = bitcoin.Psbt.fromBase64(transaction);
1218
- const clientKeyShares = await this.getClientKeySharesFromLocalStorage({
1219
- accountAddress: senderAddress
1221
+ const clientKeyShares = await this.getClientKeySharesFromStorage({
1222
+ accountAddress: senderAddress,
1223
+ chainName: this.chainName
1220
1224
  });
1221
1225
  if (!clientKeyShares || clientKeyShares.length === 0) {
1222
1226
  throw new Error('No key shares found');
@@ -1454,7 +1458,7 @@ class DynamicBtcWalletClient extends DynamicWalletClient {
1454
1458
  /**
1455
1459
  * Creates a new instance of DynamicBtcWalletClient
1456
1460
  * @param props - The client properties
1457
- */ constructor({ environmentId, authToken, baseApiUrl, baseMPCRelayApiUrl, storageKey, debug, featureFlags, authMode = AuthMode.HEADER, sdkVersion, forwardMPCClient }){
1461
+ */ constructor({ environmentId, authToken, baseApiUrl, baseMPCRelayApiUrl, storageKey, debug, featureFlags, authMode = AuthMode.HEADER, sdkVersion, forwardMPCClient }, internalOptions){
1458
1462
  super({
1459
1463
  environmentId,
1460
1464
  authToken,
@@ -1466,7 +1470,7 @@ class DynamicBtcWalletClient extends DynamicWalletClient {
1466
1470
  authMode,
1467
1471
  sdkVersion,
1468
1472
  forwardMPCClient
1469
- }), this.chainName = 'BTC';
1473
+ }, internalOptions), this.chainName = 'BTC';
1470
1474
  }
1471
1475
  }
1472
1476
 
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@dynamic-labs-wallet/btc",
3
- "version": "0.0.246",
3
+ "version": "0.0.248",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "sideEffects": false,
7
7
  "dependencies": {
8
8
  "@dynamic-labs/sdk-api-core": "^0.0.828",
9
- "@dynamic-labs-wallet/browser": "0.0.246",
9
+ "@dynamic-labs-wallet/browser": "0.0.248",
10
10
  "@bitcoinerlab/secp256k1": "^1.2.0",
11
11
  "bitcoinjs-lib": "^7.0.0",
12
12
  "bip322-js": "^3.0.0",
@@ -1,4 +1,4 @@
1
- import { type DynamicWalletClientProps, type BIP340KeygenResult, type EcdsaPublicKey, type ThresholdSignatureScheme, DynamicWalletClient, type BitcoinConfig, BitcoinAddressType, BitcoinNetwork } from '@dynamic-labs-wallet/browser';
1
+ import { type DynamicWalletClientProps, type DynamicWalletClientInternalOptions, type BIP340KeygenResult, type EcdsaPublicKey, type ThresholdSignatureScheme, DynamicWalletClient, type BitcoinConfig, BitcoinAddressType, BitcoinNetwork } from '@dynamic-labs-wallet/browser';
2
2
  import type { SignMessageContext } from '@dynamic-labs/sdk-api-core';
3
3
  export declare class DynamicBtcWalletClient extends DynamicWalletClient {
4
4
  readonly chainName = "BTC";
@@ -6,7 +6,7 @@ export declare class DynamicBtcWalletClient extends DynamicWalletClient {
6
6
  * Creates a new instance of DynamicBtcWalletClient
7
7
  * @param props - The client properties
8
8
  */
9
- constructor({ environmentId, authToken, baseApiUrl, baseMPCRelayApiUrl, storageKey, debug, featureFlags, authMode, sdkVersion, forwardMPCClient, }: DynamicWalletClientProps);
9
+ constructor({ environmentId, authToken, baseApiUrl, baseMPCRelayApiUrl, storageKey, debug, featureFlags, authMode, sdkVersion, forwardMPCClient, }: DynamicWalletClientProps, internalOptions?: DynamicWalletClientInternalOptions);
10
10
  /**
11
11
  * Creates a Bitcoin wallet account
12
12
  * @param thresholdSignatureScheme - The threshold signature scheme to use for the wallet
@@ -1 +1 @@
1
- {"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../../src/client/client.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../../src/client/client.ts"],"names":[],"mappings":"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"}