Format
tests / tests (push) Failing after 5m18s

This commit is contained in:
Jon Staab
2026-06-20 10:36:40 -07:00
parent d2b57c559d
commit 2b69c4c495
52 changed files with 388 additions and 143 deletions
+5
View File
@@ -9,6 +9,11 @@ export enum ManagementMethod {
UnallowPubkey = "unallowpubkey",
ListBannedPubkeys = "listbannedpubkeys",
ListAllowedPubkeys = "listallowedpubkeys",
CreateRole = "createrole",
EditRole = "editrole",
DeleteRole = "deleterole",
AssignRole = "assignrole",
UnassignRole = "unassignrole",
ListEventsNeedingModeration = "listeventsneedingmoderation",
AllowEvent = "allowevent",
BanEvent = "banevent",
+11 -1
View File
@@ -1,4 +1,14 @@
import {now, tryCatch, fetchJson, hexToBech32, fromPairs, sum, allPass, nthEq, nth} from "@welshman/lib"
import {
now,
tryCatch,
fetchJson,
hexToBech32,
fromPairs,
sum,
allPass,
nthEq,
nth,
} from "@welshman/lib"
import {ZAP_RECEIPT, ZAP_REQUEST} from "./Kinds.js"
import {getTagValue} from "./Tags.js"
import type {Filter} from "./Filters.js"