diff --git a/packages/system/src/Connection.ts b/packages/system/src/connection.ts similarity index 100% rename from packages/system/src/Connection.ts rename to packages/system/src/connection.ts diff --git a/packages/system/src/Const.ts b/packages/system/src/const.ts similarity index 100% rename from packages/system/src/Const.ts rename to packages/system/src/const.ts diff --git a/packages/system/src/event-publisher.ts b/packages/system/src/event-publisher.ts index 660e93c6..05609e28 100644 --- a/packages/system/src/event-publisher.ts +++ b/packages/system/src/event-publisher.ts @@ -17,7 +17,7 @@ import { import { EventBuilder } from "./event-builder"; import { EventExt } from "./event-ext"; -import { findTag } from "./utisl"; +import { findTag } from "./utils"; const Nip7Queue: Array = []; processWorkQueue(Nip7Queue); diff --git a/packages/system/src/Links.ts b/packages/system/src/links.ts similarity index 100% rename from packages/system/src/Links.ts rename to packages/system/src/links.ts diff --git a/packages/system/src/Nips.ts b/packages/system/src/nips.ts similarity index 100% rename from packages/system/src/Nips.ts rename to packages/system/src/nips.ts diff --git a/packages/system/src/Nostr.ts b/packages/system/src/nostr.ts similarity index 100% rename from packages/system/src/Nostr.ts rename to packages/system/src/nostr.ts diff --git a/packages/system/src/note-collection.ts b/packages/system/src/note-collection.ts index f5c5ef4c..49f8786f 100644 --- a/packages/system/src/note-collection.ts +++ b/packages/system/src/note-collection.ts @@ -1,6 +1,6 @@ import { appendDedupe } from "@snort/shared"; import { TaggedRawEvent, u256 } from "."; -import { findTag } from "./utisl"; +import { findTag } from "./utils"; export interface StoreSnapshot { data: TSnapshot | undefined; diff --git a/packages/system/src/Query.ts b/packages/system/src/query.ts similarity index 99% rename from packages/system/src/Query.ts rename to packages/system/src/query.ts index 60866aee..c5cf2a79 100644 --- a/packages/system/src/Query.ts +++ b/packages/system/src/query.ts @@ -3,7 +3,7 @@ import debug from "debug"; import { unixNowMs, unwrap } from "@snort/shared"; import { Connection, ReqFilter, Nips, TaggedRawEvent } from "."; -import { reqFilterEq } from "./utisl"; +import { reqFilterEq } from "./utils"; import { NoteStore } from "./note-collection"; import { flatMerge } from "./request-merger"; import { BuiltRawReqFilter } from "./request-builder"; diff --git a/packages/system/src/request-splitter.ts b/packages/system/src/request-splitter.ts index 7d63c6d0..eed73218 100644 --- a/packages/system/src/request-splitter.ts +++ b/packages/system/src/request-splitter.ts @@ -1,4 +1,4 @@ -import { flatFilterEq } from "./utisl"; +import { flatFilterEq } from "./utils"; import { FlatReqFilter } from "./request-expander"; import { flatMerge } from "./request-merger"; diff --git a/packages/system/src/utisl.ts b/packages/system/src/utils.ts similarity index 100% rename from packages/system/src/utisl.ts rename to packages/system/src/utils.ts diff --git a/packages/system/src/Zaps.ts b/packages/system/src/zaps.ts similarity index 98% rename from packages/system/src/Zaps.ts rename to packages/system/src/zaps.ts index d38f03f7..c31476f3 100644 --- a/packages/system/src/Zaps.ts +++ b/packages/system/src/zaps.ts @@ -1,7 +1,7 @@ import { FeedCache } from "@snort/shared"; import { sha256, decodeInvoice, InvoiceDetails } from "@snort/shared"; import { HexKey, NostrEvent } from "./nostr"; -import { findTag } from "./utisl"; +import { findTag } from "./utils"; import { MetadataCache } from "./cache"; function getInvoice(zap: NostrEvent): InvoiceDetails | undefined {