@airgap/cosmos 0.13.8-beta.4 → 0.13.8-beta.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.
|
@@ -76445,6 +76445,12 @@ exports.NonExtendedProtocol = void 0;
|
|
|
76445
76445
|
var NonExtendedProtocol = /** @class */ (function () {
|
|
76446
76446
|
function NonExtendedProtocol() {
|
|
76447
76447
|
}
|
|
76448
|
+
NonExtendedProtocol.prototype.getExtendedPublicKeyFromMnemonic = function (mnemonic, derivationPath, password) {
|
|
76449
|
+
throw Promise.reject('extended public key support not implemented');
|
|
76450
|
+
};
|
|
76451
|
+
NonExtendedProtocol.prototype.getExtendedPublicKeyFromHexSecret = function (secret, derivationPath) {
|
|
76452
|
+
throw Promise.reject('extended public key support not implemented');
|
|
76453
|
+
};
|
|
76448
76454
|
NonExtendedProtocol.prototype.getExtendedPrivateKeyFromMnemonic = function (mnemonic, derivationPath, password) {
|
|
76449
76455
|
throw Promise.reject('extended private key support not implemented');
|
|
76450
76456
|
};
|
package/package.json
CHANGED