@btc-vision/transaction
Version:
OPNet transaction library allows you to create and sign transactions for the OPNet network.
14 lines • 692 B
JavaScript
export var MnemonicStrength;
(function (MnemonicStrength) {
/** 128 bits of entropy - 12 words */
MnemonicStrength[MnemonicStrength["MINIMUM"] = 128] = "MINIMUM";
/** 160 bits of entropy - 15 words */
MnemonicStrength[MnemonicStrength["LOW"] = 160] = "LOW";
/** 192 bits of entropy - 18 words */
MnemonicStrength[MnemonicStrength["MEDIUM"] = 192] = "MEDIUM";
/** 224 bits of entropy - 21 words */
MnemonicStrength[MnemonicStrength["HIGH"] = 224] = "HIGH";
/** 256 bits of entropy - 24 words */
MnemonicStrength[MnemonicStrength["MAXIMUM"] = 256] = "MAXIMUM";
})(MnemonicStrength || (MnemonicStrength = {}));
//# sourceMappingURL=MnemonicStrength.js.map