@dainprotocol/cli 1.0.26 → 1.0.27

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.
@@ -196,6 +196,7 @@ const dainService = defineDAINService({
196
196
  contexts: []
197
197
  });
198
198
 
199
- export default {
200
- fetch: dainService.startWorkers(),
201
- };
199
+ dainService.startNode({ port: 2022 }).then(() => {
200
+ console.log("Comprehensive Weather DAIN Service is running on port 2022");
201
+ });
202
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dainprotocol/cli",
3
- "version": "1.0.26",
3
+ "version": "1.0.27",
4
4
  "description": "CLI for Dain Protocol",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
@@ -196,6 +196,7 @@ const dainService = defineDAINService({
196
196
  contexts: []
197
197
  });
198
198
 
199
- export default {
200
- fetch: dainService.startWorkers(),
201
- };
199
+ dainService.startNode({ port: 2022 }).then(() => {
200
+ console.log("Comprehensive Weather DAIN Service is running on port 2022");
201
+ });
202
+