@airgap/moonbeam 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.
|
@@ -87701,6 +87701,12 @@ exports.NonExtendedProtocol = void 0;
|
|
|
87701
87701
|
var NonExtendedProtocol = /** @class */ (function () {
|
|
87702
87702
|
function NonExtendedProtocol() {
|
|
87703
87703
|
}
|
|
87704
|
+
NonExtendedProtocol.prototype.getExtendedPublicKeyFromMnemonic = function (mnemonic, derivationPath, password) {
|
|
87705
|
+
throw Promise.reject('extended public key support not implemented');
|
|
87706
|
+
};
|
|
87707
|
+
NonExtendedProtocol.prototype.getExtendedPublicKeyFromHexSecret = function (secret, derivationPath) {
|
|
87708
|
+
throw Promise.reject('extended public key support not implemented');
|
|
87709
|
+
};
|
|
87704
87710
|
NonExtendedProtocol.prototype.getExtendedPrivateKeyFromMnemonic = function (mnemonic, derivationPath, password) {
|
|
87705
87711
|
throw Promise.reject('extended private key support not implemented');
|
|
87706
87712
|
};
|
package/package.json
CHANGED