@ensnode/ensdb-sdk 1.14.0 → 1.15.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ensindexer-abstract/index.d.ts +3 -3
- package/dist/ensindexer-abstract/index.js +745 -729
- package/dist/ensindexer-abstract/index.js.map +1 -1
- package/dist/{index-DdrIzPaZ.d.ts → index-1D8_3_7g.d.ts} +3984 -3981
- package/dist/index.d.ts +7 -3
- package/dist/index.js +944 -922
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { EnsDbPublicConfig, IndexingMetadataContext, IndexingMetadataContextInitialized, Unvalidated } from '@ensnode/ensnode-sdk';
|
|
2
2
|
export { IndexingMetadataContext, IndexingMetadataContextInitialized, IndexingMetadataContextStatusCodes, IndexingMetadataContextUninitialized } from '@ensnode/ensnode-sdk';
|
|
3
3
|
import { NodePgDatabase } from 'drizzle-orm/node-postgres';
|
|
4
|
-
import { a as abstractEnsIndexerSchema } from './index-
|
|
4
|
+
import { a as abstractEnsIndexerSchema } from './index-1D8_3_7g.js';
|
|
5
5
|
import { e as ensNodeSchema } from './index-BHoa233Z.js';
|
|
6
|
-
import 'drizzle-orm/pg-core';
|
|
7
|
-
import 'drizzle-orm';
|
|
8
6
|
import 'ponder';
|
|
7
|
+
import 'drizzle-orm';
|
|
8
|
+
import 'drizzle-orm/pg-core';
|
|
9
9
|
import 'enssdk';
|
|
10
10
|
|
|
11
11
|
/**
|
|
@@ -173,6 +173,10 @@ declare class EnsDbReader<ConcreteEnsIndexerSchema extends AbstractEnsIndexerSch
|
|
|
173
173
|
* @returns the initialized record, or a default uninitialized one if no record exists in ENSDb.
|
|
174
174
|
*/
|
|
175
175
|
getIndexingMetadataContext(): Promise<IndexingMetadataContext>;
|
|
176
|
+
/**
|
|
177
|
+
* Destroy the ENSDbReader instance by closing the ENSDb connection pool.
|
|
178
|
+
*/
|
|
179
|
+
destroy(): Promise<void>;
|
|
176
180
|
/**
|
|
177
181
|
* Get ENSNode Metadata record
|
|
178
182
|
*
|