export interface Contact { did: string; name?: string; nextPubKeyHashB64?: string; // base64-encoded SHA256 hash of next public key profileImageUrl?: string; publicKeyBase64?: string; seesMe?: boolean; // cached value of the server setting registered?: boolean; // cached value of the server setting } export const ContactSchema = { contacts: "&did, name", // no need to key by other things };