@btc-vision/wallet-sdk 2.0.5 → 2.0.6
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.cjs.js +1 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +5 -0
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -699,8 +699,13 @@ export declare class SimpleKeyring {
|
|
|
699
699
|
getPublicKey(): string;
|
|
700
700
|
/**
|
|
701
701
|
* Get the quantum public key
|
|
702
|
+
* @throws Error if no quantum keypair is initialized
|
|
702
703
|
*/
|
|
703
704
|
getQuantumPublicKey(): string;
|
|
705
|
+
/**
|
|
706
|
+
* Get the quantum public key if available, or undefined if not initialized
|
|
707
|
+
*/
|
|
708
|
+
getQuantumPublicKeyOrUndefined(): string | undefined;
|
|
704
709
|
/**
|
|
705
710
|
* Get the quantum public key hash (universal identifier)
|
|
706
711
|
*/
|