@btc-vision/wallet-sdk 2.0.7 → 2.0.8

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/dist/index.d.ts CHANGED
@@ -177,7 +177,7 @@ export declare class HdKeyring {
177
177
  private readonly securityLevel;
178
178
  private readonly passphrase;
179
179
  private addressType;
180
- private _hdPath;
180
+ private readonly _hdPath;
181
181
  constructor(options?: HdKeyringOptions);
182
182
  /**
183
183
  * Get the HD derivation path
@@ -204,10 +204,6 @@ export declare class HdKeyring {
204
204
  * Uses custom hdPath if set, otherwise uses Unisat-compatible derivation.
205
205
  */
206
206
  deriveWallet(index: number): Wallet;
207
- /**
208
- * Check if the current hdPath is a custom (non-standard) path
209
- */
210
- private isCustomHdPath;
211
207
  /**
212
208
  * Derive a wallet using standard (non-Unisat) derivation
213
209
  */
@@ -303,6 +299,10 @@ export declare class HdKeyring {
303
299
  * Get ML-DSA keypair for quantum operations
304
300
  */
305
301
  getMLDSAKeypair(publicKey: string): QuantumBIP32Interface;
302
+ /**
303
+ * Check if the current hdPath is a custom (non-standard) path
304
+ */
305
+ private isCustomHdPath;
306
306
  private findWalletByPublicKey;
307
307
  private getAddressFromWallet;
308
308
  }