mirror of
https://github.com/nbd-wtf/nostr-tools.git
synced 2026-09-13 22:05:07 +00:00
11 lines
241 B
TypeScript
11 lines
241 B
TypeScript
import { verifyEvent } from './pure.ts'
|
|
import TrustedSimplePool from './trusted-pool.ts'
|
|
|
|
export default class PureSimplePool extends TrustedSimplePool {
|
|
constructor() {
|
|
super({ verifyEvent })
|
|
}
|
|
}
|
|
|
|
export * from './trusted-pool.ts'
|