@airgap/substrate 0.13.8-beta.5 → 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.
|
@@ -49704,6 +49704,12 @@ exports.NonExtendedProtocol = void 0;
|
|
|
49704
49704
|
var NonExtendedProtocol = /** @class */ (function () {
|
|
49705
49705
|
function NonExtendedProtocol() {
|
|
49706
49706
|
}
|
|
49707
|
+
NonExtendedProtocol.prototype.getExtendedPublicKeyFromMnemonic = function (mnemonic, derivationPath, password) {
|
|
49708
|
+
throw Promise.reject('extended public key support not implemented');
|
|
49709
|
+
};
|
|
49710
|
+
NonExtendedProtocol.prototype.getExtendedPublicKeyFromHexSecret = function (secret, derivationPath) {
|
|
49711
|
+
throw Promise.reject('extended public key support not implemented');
|
|
49712
|
+
};
|
|
49707
49713
|
NonExtendedProtocol.prototype.getExtendedPrivateKeyFromMnemonic = function (mnemonic, derivationPath, password) {
|
|
49708
49714
|
throw Promise.reject('extended private key support not implemented');
|
|
49709
49715
|
};
|
package/package.json
CHANGED