unsplit, backwards-compatibility, wasm relay and pool must be configured manually from the abstract classes.

This commit is contained in:
fiatjaf
2023-12-21 19:57:28 -03:00
parent a4ae964ee6
commit 7f11c0c618
16 changed files with 162 additions and 89 deletions

10
pool.ts Normal file
View File

@@ -0,0 +1,10 @@
import { verifyEvent } from './pure.ts'
import { AbstractSimplePool } from './abstract-pool.ts'
export class SimplePool extends AbstractSimplePool {
constructor() {
super({ verifyEvent })
}
}
export * from './abstract-pool.ts'