diff --git a/kinds.ts b/kinds.ts index dad03b7..b61797c 100644 --- a/kinds.ts +++ b/kinds.ts @@ -20,9 +20,6 @@ export function isAddressableKind(kind: number): boolean { return 30000 <= kind && kind < 40000 } -/** @deprecated use isAddressableKind instead */ -export const isParameterizedReplaceableKind = isAddressableKind - /** Classification of the event kind. */ export type KindClassification = 'regular' | 'replaceable' | 'ephemeral' | 'parameterized' | 'unknown' diff --git a/relay.ts b/relay.ts index 6277d23..7539022 100644 --- a/relay.ts +++ b/relay.ts @@ -3,13 +3,6 @@ import { verifyEvent } from './pure.ts' import { AbstractRelay } from './abstract-relay.ts' -/** - * @deprecated use Relay.connect() instead. - */ -export function relayConnect(url: string): Promise { - return Relay.connect(url) -} - var _WebSocket: typeof WebSocket try {