hd-wallet-wasm 0.1.4 → 0.1.5
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/hd-wallet.js +0 -0
- package/dist/hd-wallet.wasm +0 -0
- package/dist/index.d.ts +4 -2
- package/package.json +1 -1
- package/src/index.d.ts +4 -2
package/dist/hd-wallet.js
CHANGED
|
Binary file
|
package/dist/hd-wallet.wasm
CHANGED
|
Binary file
|
package/dist/index.d.ts
CHANGED
|
@@ -606,10 +606,12 @@ export interface UtilsAPI {
|
|
|
606
606
|
|
|
607
607
|
/**
|
|
608
608
|
* Initialize the HD Wallet WASM module
|
|
609
|
+
* @param wasmPath - Optional path to WASM file
|
|
609
610
|
*/
|
|
610
|
-
export default function init(): Promise<HDWalletModule>;
|
|
611
|
+
export default function init(wasmPath?: string): Promise<HDWalletModule>;
|
|
611
612
|
|
|
612
613
|
/**
|
|
613
614
|
* Create HD Wallet instance (alternative syntax)
|
|
615
|
+
* @param wasmPath - Optional path to WASM file
|
|
614
616
|
*/
|
|
615
|
-
export function createHDWallet(): Promise<HDWalletModule>;
|
|
617
|
+
export function createHDWallet(wasmPath?: string): Promise<HDWalletModule>;
|
package/package.json
CHANGED
package/src/index.d.ts
CHANGED
|
@@ -606,10 +606,12 @@ export interface UtilsAPI {
|
|
|
606
606
|
|
|
607
607
|
/**
|
|
608
608
|
* Initialize the HD Wallet WASM module
|
|
609
|
+
* @param wasmPath - Optional path to WASM file
|
|
609
610
|
*/
|
|
610
|
-
export default function init(): Promise<HDWalletModule>;
|
|
611
|
+
export default function init(wasmPath?: string): Promise<HDWalletModule>;
|
|
611
612
|
|
|
612
613
|
/**
|
|
613
614
|
* Create HD Wallet instance (alternative syntax)
|
|
615
|
+
* @param wasmPath - Optional path to WASM file
|
|
614
616
|
*/
|
|
615
|
-
export function createHDWallet(): Promise<HDWalletModule>;
|
|
617
|
+
export function createHDWallet(wasmPath?: string): Promise<HDWalletModule>;
|