@airgap/aeternity 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.
|
@@ -68232,6 +68232,12 @@ exports.NonExtendedProtocol = void 0;
|
|
|
68232
68232
|
var NonExtendedProtocol = /** @class */ (function () {
|
|
68233
68233
|
function NonExtendedProtocol() {
|
|
68234
68234
|
}
|
|
68235
|
+
NonExtendedProtocol.prototype.getExtendedPublicKeyFromMnemonic = function (mnemonic, derivationPath, password) {
|
|
68236
|
+
throw Promise.reject('extended public key support not implemented');
|
|
68237
|
+
};
|
|
68238
|
+
NonExtendedProtocol.prototype.getExtendedPublicKeyFromHexSecret = function (secret, derivationPath) {
|
|
68239
|
+
throw Promise.reject('extended public key support not implemented');
|
|
68240
|
+
};
|
|
68235
68241
|
NonExtendedProtocol.prototype.getExtendedPrivateKeyFromMnemonic = function (mnemonic, derivationPath, password) {
|
|
68236
68242
|
throw Promise.reject('extended private key support not implemented');
|
|
68237
68243
|
};
|
package/package.json
CHANGED