You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
387 B
22 lines
387 B
/**
|
|
* Interface for a Decentralized Identifier (DID)
|
|
* @author Matthew Raymer
|
|
*/
|
|
|
|
import { KeyMeta } from "../libs/crypto/vc";
|
|
|
|
export interface IKey {
|
|
id: string;
|
|
type: string;
|
|
controller: string;
|
|
ethereumAddress: string;
|
|
publicKeyHex: string;
|
|
privateKeyHex: string;
|
|
meta?: KeyMeta;
|
|
}
|
|
|
|
export interface IIdentifier {
|
|
did: string;
|
|
keys: IKey[];
|
|
services: any[];
|
|
}
|
|
|