@elysium-onchain-id/identity-sdk
Version:
Interact with BlockChain Identities.
15 lines • 599 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.KeyType = exports.KeyPurpose = void 0;
var KeyPurpose;
(function (KeyPurpose) {
KeyPurpose[KeyPurpose["MANAGEMENT"] = 1] = "MANAGEMENT";
KeyPurpose[KeyPurpose["ACTION"] = 2] = "ACTION";
KeyPurpose[KeyPurpose["CLAIM"] = 3] = "CLAIM";
})(KeyPurpose || (exports.KeyPurpose = KeyPurpose = {}));
var KeyType;
(function (KeyType) {
KeyType[KeyType["ECDSA"] = 1] = "ECDSA";
KeyType[KeyType["RSA"] = 2] = "RSA";
})(KeyType || (exports.KeyType = KeyType = {}));
//# sourceMappingURL=Key.interface.js.map