mirror of
https://github.com/nbd-wtf/nostr-tools.git
synced 2025-12-09 00:28:51 +00:00
11 lines
233 B
TypeScript
11 lines
233 B
TypeScript
import { verifyEvent } from './wasm.ts'
|
|
import { TrustedSimplePool } from './trusted-pool.ts'
|
|
|
|
export class SimplePool extends TrustedSimplePool {
|
|
constructor() {
|
|
super({ verifyEvent })
|
|
}
|
|
}
|
|
|
|
export * from './trusted-pool.ts'
|