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