Cache for verified napplet manifest entries. Persists to localStorage. Used to detect napplet updates (aggregateHash changes) across sessions.
import { manifestCache } from '@kehto/shell';manifestCache.set({ pubkey: 'abc...', dTag: 'chat', aggregateHash: 'dead', verifiedAt: Date.now() });const entry = manifestCache.get('abc...', 'chat'); Copy
import { manifestCache } from '@kehto/shell';manifestCache.set({ pubkey: 'abc...', dTag: 'chat', aggregateHash: 'dead', verifiedAt: Date.now() });const entry = manifestCache.get('abc...', 'chat');
Cache for verified napplet manifest entries. Persists to localStorage. Used to detect napplet updates (aggregateHash changes) across sessions.
Example