@0xsequence/indexer 2.3.19 → 2.3.20

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.
@@ -0,0 +1,16 @@
1
+ export * from "./indexer.gen.js";
2
+ export * as IndexerGateway from "./indexergw.gen.js";
3
+ import { Indexer as IndexerRpc } from "./indexer.gen.js";
4
+ import { IndexerGateway as IndexerGatewayRpc } from "./indexergw.gen.js";
5
+ export declare class SequenceIndexer extends IndexerRpc {
6
+ projectAccessKey?: string | undefined;
7
+ jwtAuth?: string | undefined;
8
+ constructor(hostname: string, projectAccessKey?: string | undefined, jwtAuth?: string | undefined);
9
+ _fetch: (input: RequestInfo, init?: RequestInit) => Promise<Response>;
10
+ }
11
+ export declare class SequenceIndexerGateway extends IndexerGatewayRpc {
12
+ projectAccessKey?: string | undefined;
13
+ jwtAuth?: string | undefined;
14
+ constructor(hostname: string, projectAccessKey?: string | undefined, jwtAuth?: string | undefined);
15
+ _fetch: (input: RequestInfo, init?: RequestInit) => Promise<Response>;
16
+ }