@nadohq/indexer-client 0.1.0-alpha.34 → 0.1.0-alpha.36

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.
@@ -25,8 +25,8 @@ __export(endpoints_exports, {
25
25
  module.exports = __toCommonJS(endpoints_exports);
26
26
  var INDEXER_CLIENT_ENDPOINTS = {
27
27
  local: "http://localhost:8000/indexer",
28
- arbitrum: "https://archive.prod.vertexprotocol.com/v1",
29
- inkTestnet: "https://archive.test.nado.xyz/v1"
28
+ inkTestnet: "https://archive.test.nado.xyz/v1",
29
+ inkMainnet: "https://archive.prod.nado.xyz/v1"
30
30
  };
31
31
  // Annotate the CommonJS export names for ESM import in node:
32
32
  0 && (module.exports = {
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/endpoints.ts"],"sourcesContent":["import { ChainEnv } from '@nadohq/shared';\n\nexport const INDEXER_CLIENT_ENDPOINTS: Record<ChainEnv, string> = {\n local: 'http://localhost:8000/indexer',\n arbitrum: 'https://archive.prod.vertexprotocol.com/v1',\n inkTestnet: 'https://archive.test.nado.xyz/v1',\n};\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAEO,IAAM,2BAAqD;AAAA,EAChE,OAAO;AAAA,EACP,UAAU;AAAA,EACV,YAAY;AACd;","names":[]}
1
+ {"version":3,"sources":["../src/endpoints.ts"],"sourcesContent":["import { ChainEnv } from '@nadohq/shared';\n\nexport const INDEXER_CLIENT_ENDPOINTS: Record<ChainEnv, string> = {\n local: 'http://localhost:8000/indexer',\n inkTestnet: 'https://archive.test.nado.xyz/v1',\n inkMainnet: 'https://archive.prod.nado.xyz/v1',\n};\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAEO,IAAM,2BAAqD;AAAA,EAChE,OAAO;AAAA,EACP,YAAY;AAAA,EACZ,YAAY;AACd;","names":[]}
package/dist/endpoints.js CHANGED
@@ -1,8 +1,8 @@
1
1
  // src/endpoints.ts
2
2
  var INDEXER_CLIENT_ENDPOINTS = {
3
3
  local: "http://localhost:8000/indexer",
4
- arbitrum: "https://archive.prod.vertexprotocol.com/v1",
5
- inkTestnet: "https://archive.test.nado.xyz/v1"
4
+ inkTestnet: "https://archive.test.nado.xyz/v1",
5
+ inkMainnet: "https://archive.prod.nado.xyz/v1"
6
6
  };
7
7
  export {
8
8
  INDEXER_CLIENT_ENDPOINTS
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/endpoints.ts"],"sourcesContent":["import { ChainEnv } from '@nadohq/shared';\n\nexport const INDEXER_CLIENT_ENDPOINTS: Record<ChainEnv, string> = {\n local: 'http://localhost:8000/indexer',\n arbitrum: 'https://archive.prod.vertexprotocol.com/v1',\n inkTestnet: 'https://archive.test.nado.xyz/v1',\n};\n"],"mappings":";AAEO,IAAM,2BAAqD;AAAA,EAChE,OAAO;AAAA,EACP,UAAU;AAAA,EACV,YAAY;AACd;","names":[]}
1
+ {"version":3,"sources":["../src/endpoints.ts"],"sourcesContent":["import { ChainEnv } from '@nadohq/shared';\n\nexport const INDEXER_CLIENT_ENDPOINTS: Record<ChainEnv, string> = {\n local: 'http://localhost:8000/indexer',\n inkTestnet: 'https://archive.test.nado.xyz/v1',\n inkMainnet: 'https://archive.prod.nado.xyz/v1',\n};\n"],"mappings":";AAEO,IAAM,2BAAqD;AAAA,EAChE,OAAO;AAAA,EACP,YAAY;AAAA,EACZ,YAAY;AACd;","names":[]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nadohq/indexer-client",
3
- "version": "0.1.0-alpha.34",
3
+ "version": "0.1.0-alpha.36",
4
4
  "type": "module",
5
5
  "sideEffects": false,
6
6
  "description": "> TODO: description",
@@ -41,8 +41,8 @@
41
41
  "module": "./dist/index.js",
42
42
  "types": "./dist/index.d.ts",
43
43
  "dependencies": {
44
- "@nadohq/engine-client": "^0.1.0-alpha.34",
45
- "@nadohq/shared": "^0.1.0-alpha.34",
44
+ "@nadohq/engine-client": "^0.1.0-alpha.36",
45
+ "@nadohq/shared": "^0.1.0-alpha.36",
46
46
  "axios": "*",
47
47
  "ts-mixer": "*"
48
48
  },
@@ -52,5 +52,5 @@
52
52
  "devDependencies": {
53
53
  "viem": "*"
54
54
  },
55
- "gitHead": "3f674a0cba3c9fcfef5bbeeff39b208a20f329a0"
55
+ "gitHead": "e695f02dc33e35a17eb91a8bc6dde6f051823152"
56
56
  }
package/src/endpoints.ts CHANGED
@@ -2,6 +2,6 @@ import { ChainEnv } from '@nadohq/shared';
2
2
 
3
3
  export const INDEXER_CLIENT_ENDPOINTS: Record<ChainEnv, string> = {
4
4
  local: 'http://localhost:8000/indexer',
5
- arbitrum: 'https://archive.prod.vertexprotocol.com/v1',
6
5
  inkTestnet: 'https://archive.test.nado.xyz/v1',
6
+ inkMainnet: 'https://archive.prod.nado.xyz/v1',
7
7
  };