**Motivations:** - website-skeleton needs a real service contract with valid UUIDs and validators - Service wallet required for production use with configurable public key - Iframe styling needs improvement to remove scrollbars and match UserWallet theme **Root causes:** - DEFAULT_VALIDATEURS used placeholder public key that cannot verify signatures - No service wallet generation script for production deployment - Iframe had fixed height causing scrollbars and visual mismatch with dark theme **Correctifs:** - Created real service contract in src/serviceContract.ts with dedicated UUIDs (skeleton-service-uuid-4nkweb-2026) - Added service wallet generation script (generate-service-wallet.mjs) with .env and .env.private files - Improved iframe container styling: increased height (800px), dark background (#1a1a1a), better shadows, hidden scrollbars - Added .env.private to .gitignore for security **Evolutions:** - Service contract automatically loaded on startup and sent to UserWallet iframe - Public key configurable via VITE_SKELETON_SERVICE_PUBLIC_KEY environment variable - Added npm script 'generate-wallet' for easy wallet generation - Enhanced iframe visual integration with UserWallet dark theme **Pages affectées:** - website-skeleton/src/serviceContract.ts (new) - website-skeleton/src/config.ts - website-skeleton/src/main.ts - website-skeleton/generate-service-wallet.mjs (new) - website-skeleton/index.html - website-skeleton/package.json - website-skeleton/.gitignore - website-skeleton/.env (new) - website-skeleton/.env.private (new)
43 lines
1.3 KiB
TypeScript
43 lines
1.3 KiB
TypeScript
import type { NonceCacheLike } from './types.js';
|
|
/**
|
|
* Persistent nonce cache using IndexedDB (browser) and localStorage.
|
|
* Implements NonceCacheLike interface for use with verifyLoginProof.
|
|
*/
|
|
export declare class PersistentNonceCache implements NonceCacheLike {
|
|
private readonly ttlMs;
|
|
private readonly storageKey;
|
|
private readonly useIndexedDB;
|
|
private db;
|
|
constructor(ttlMs?: number, storageKey?: string);
|
|
/**
|
|
* Initialize IndexedDB if available.
|
|
*/
|
|
init(): Promise<void>;
|
|
/**
|
|
* Check if nonce is valid (not seen within TTL). Records nonce on success.
|
|
* Uses localStorage for synchronous access (required by NonceCacheLike interface).
|
|
* Also persists to IndexedDB in background if available.
|
|
*/
|
|
isValid(nonce: string, timestamp: number): boolean;
|
|
/**
|
|
* Synchronous validation using localStorage (primary storage).
|
|
*/
|
|
private isValidSync;
|
|
/**
|
|
* Persist nonce to IndexedDB in background (async, non-blocking).
|
|
*/
|
|
private persistToIndexedDB;
|
|
/**
|
|
* Cleanup expired entries (localStorage and IndexedDB).
|
|
*/
|
|
private cleanupSync;
|
|
/**
|
|
* Cleanup expired entries from IndexedDB (async, non-blocking).
|
|
*/
|
|
private cleanupIndexedDB;
|
|
/**
|
|
* Clear all entries.
|
|
*/
|
|
clear(): void;
|
|
}
|
|
//# sourceMappingURL=persistentNonceCache.d.ts.map
|