@airgap/astar 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.
|
@@ -60136,6 +60136,12 @@ exports.NonExtendedProtocol = void 0;
|
|
|
60136
60136
|
var NonExtendedProtocol = /** @class */ (function () {
|
|
60137
60137
|
function NonExtendedProtocol() {
|
|
60138
60138
|
}
|
|
60139
|
+
NonExtendedProtocol.prototype.getExtendedPublicKeyFromMnemonic = function (mnemonic, derivationPath, password) {
|
|
60140
|
+
throw Promise.reject('extended public key support not implemented');
|
|
60141
|
+
};
|
|
60142
|
+
NonExtendedProtocol.prototype.getExtendedPublicKeyFromHexSecret = function (secret, derivationPath) {
|
|
60143
|
+
throw Promise.reject('extended public key support not implemented');
|
|
60144
|
+
};
|
|
60139
60145
|
NonExtendedProtocol.prototype.getExtendedPrivateKeyFromMnemonic = function (mnemonic, derivationPath, password) {
|
|
60140
60146
|
throw Promise.reject('extended private key support not implemented');
|
|
60141
60147
|
};
|
package/package.json
CHANGED