refactor request builder to handle relay hints

This commit is contained in:
2023-05-25 19:52:03 +01:00
parent ca92b365e0
commit 9a33466c7c
11 changed files with 242 additions and 118 deletions

View File

@ -0,0 +1,5 @@
import { RawReqFilter } from "@snort/nostr";
export function mergeSimilar(filters: Array<RawReqFilter>): Array<RawReqFilter> {
return filters;
}