export const isHardLink = (obj: any): obj is HardLink => {
  return isBaseLink(obj) && isCID((obj as any).cid)
}