refactor: polish

This commit is contained in:
2024-09-20 22:15:12 +01:00
parent 4b3e7710e0
commit c274c0a842
39 changed files with 419 additions and 320 deletions

View File

@ -29,6 +29,7 @@ export interface Optimizer {
flatMerge(all: Array<FlatReqFilter>): Array<ReqFilter>;
compress(all: Array<ReqFilter>): Array<ReqFilter>;
schnorrVerify(ev: NostrEvent): boolean;
batchVerify(evs: Array<NostrEvent>): Array<boolean>;
}
export const DefaultOptimizer = {