export interface Contact {
  did: string;
  name?: string;
  publicKeyBase64?: string;
  seesMe?: boolean;
  registered?: boolean;
}

export const ContactsSchema = {
  contacts: "&did, name, publicKeyBase64, registered, seesMe",
};