Status: IN
The coordinator assigns strictly increasing versions per key via a centralized counter, so stale hint replays are absorbed harmlessly by `Node.put()`'s `version >= existing_version` check.
Source: entries/2026/05/29/hinted-handoff-hinted_handoff.md
version = self.versions.get(key, 0) + 1
self.versions[key] = version