@0xsequence/indexer 2.3.35 → 3.0.0-beta.2
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/.turbo/turbo-build.log +5 -0
- package/CHANGELOG.md +1791 -0
- package/LICENSE +0 -17
- package/README.md +1 -2
- package/dist/{declarations/src/index.d.ts → index.d.ts} +5 -4
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +97 -0
- package/dist/{declarations/src/indexer.gen.d.ts → indexer.gen.d.ts} +7 -15
- package/dist/indexer.gen.d.ts.map +1 -0
- package/dist/indexer.gen.js +1005 -0
- package/dist/{declarations/src/indexergw.gen.d.ts → indexergw.gen.d.ts} +13 -29
- package/dist/indexergw.gen.d.ts.map +1 -0
- package/dist/indexergw.gen.js +644 -0
- package/package.json +19 -13
- package/src/index.ts +2 -2
- package/src/indexer.gen.ts +326 -294
- package/src/indexergw.gen.ts +142 -164
- package/tsconfig.json +10 -0
- package/dist/0xsequence-indexer.cjs.d.ts +0 -2
- package/dist/0xsequence-indexer.cjs.dev.js +0 -1883
- package/dist/0xsequence-indexer.cjs.js +0 -7
- package/dist/0xsequence-indexer.cjs.prod.js +0 -1883
- package/dist/0xsequence-indexer.esm.js +0 -1820
package/src/index.ts
CHANGED
|
@@ -8,7 +8,7 @@ export class SequenceIndexer extends IndexerRpc {
|
|
|
8
8
|
constructor(
|
|
9
9
|
hostname: string,
|
|
10
10
|
public projectAccessKey?: string,
|
|
11
|
-
public jwtAuth?: string
|
|
11
|
+
public jwtAuth?: string,
|
|
12
12
|
) {
|
|
13
13
|
super(hostname.endsWith('/') ? hostname.slice(0, -1) : hostname, fetch)
|
|
14
14
|
this.fetch = this._fetch
|
|
@@ -41,7 +41,7 @@ export class SequenceIndexerGateway extends IndexerGatewayRpc {
|
|
|
41
41
|
constructor(
|
|
42
42
|
hostname: string,
|
|
43
43
|
public projectAccessKey?: string,
|
|
44
|
-
public jwtAuth?: string
|
|
44
|
+
public jwtAuth?: string,
|
|
45
45
|
) {
|
|
46
46
|
super(hostname.endsWith('/') ? hostname.slice(0, -1) : hostname, fetch)
|
|
47
47
|
this.fetch = this._fetch
|