@0xsequence/marketplace 2.1.6 → 2.1.7

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.
@@ -1024,7 +1024,6 @@ const webrpcErrorByCode = {
1024
1024
  [9999]: NotImplementedError
1025
1025
  };
1026
1026
 
1027
- const fetch = globalThis.fetch;
1028
1027
  class MarketplaceIndexer extends Marketplace {
1029
1028
  constructor(hostname, projectAccessKey, jwtAuth) {
1030
1029
  super(hostname.endsWith('/') ? hostname.slice(0, -1) : hostname, fetch);
@@ -1024,7 +1024,6 @@ const webrpcErrorByCode = {
1024
1024
  [9999]: NotImplementedError
1025
1025
  };
1026
1026
 
1027
- const fetch = globalThis.fetch;
1028
1027
  class MarketplaceIndexer extends Marketplace {
1029
1028
  constructor(hostname, projectAccessKey, jwtAuth) {
1030
1029
  super(hostname.endsWith('/') ? hostname.slice(0, -1) : hostname, fetch);
@@ -1020,7 +1020,6 @@ const webrpcErrorByCode = {
1020
1020
  [9999]: NotImplementedError
1021
1021
  };
1022
1022
 
1023
- const fetch = globalThis.fetch;
1024
1023
  class MarketplaceIndexer extends Marketplace {
1025
1024
  constructor(hostname, projectAccessKey, jwtAuth) {
1026
1025
  super(hostname.endsWith('/') ? hostname.slice(0, -1) : hostname, fetch);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@0xsequence/marketplace",
3
- "version": "2.1.6",
3
+ "version": "2.1.7",
4
4
  "description": "marketplace sub-package for Sequence",
5
5
  "repository": "https://github.com/0xsequence/sequence.js/tree/master/packages/marketplace",
6
6
  "source": "src/index.ts",
package/src/index.ts CHANGED
@@ -2,8 +2,6 @@ export * from './marketplace.gen'
2
2
 
3
3
  import { Marketplace as MarketplaceRpc } from './marketplace.gen'
4
4
 
5
- const fetch = globalThis.fetch
6
-
7
5
  export class MarketplaceIndexer extends MarketplaceRpc {
8
6
  constructor(
9
7
  hostname: string,