@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/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