UNPKG

@elysium-onchain-id/identity-sdk

Version:
15 lines (14 loc) 233 B
export declare enum KeyPurpose { MANAGEMENT = 1, ACTION = 2, CLAIM = 3 } export declare enum KeyType { ECDSA = 1, RSA = 2 } export interface Key { purposes: KeyPurpose[]; type: KeyType; key: string; }