@morpho-dev/router 0.4.2 → 0.6.0

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/README.md CHANGED
@@ -77,13 +77,14 @@ Usage: router [options] [command]
77
77
  Router package for Morpho protocol
78
78
 
79
79
  Options:
80
- -V, --version output the version number
81
- -h, --help display help for command
80
+ -V, --version output the version number
81
+ -h, --help display help for command
82
82
 
83
83
  Commands:
84
- start [options] Start Router services.
85
- chain Manage the anvil chain lifecycle.
86
- help [command] display help for command
84
+ start [options] Start Router services.
85
+ chain Manage the anvil chain lifecycle.
86
+ gatekeeper [options] Start Gatekeeper validation service.
87
+ help [command] display help for command
87
88
  ```
88
89
 
89
90
  #### start
@@ -119,4 +120,16 @@ Commands:
119
120
  help [command] display help for command
120
121
  ```
121
122
 
123
+ #### gatekeeper
124
+
125
+ ```text
126
+ Usage: router gatekeeper [options]
127
+
128
+ Start Gatekeeper validation service.
129
+
130
+ Options:
131
+ --config-file <path> Path to router TOML config file
132
+ -h, --help display help for command
133
+ ```
134
+
122
135
  <!-- AUTO-GENERATED: CLI-HELP END -->
@@ -0,0 +1,18 @@
1
+ //#region rolldown:runtime
2
+ var __defProp = Object.defineProperty;
3
+ var __exportAll = (all, symbols) => {
4
+ let target = {};
5
+ for (var name in all) {
6
+ __defProp(target, name, {
7
+ get: all[name],
8
+ enumerable: true
9
+ });
10
+ }
11
+ if (symbols) {
12
+ __defProp(target, Symbol.toStringTag, { value: "Module" });
13
+ }
14
+ return target;
15
+ };
16
+
17
+ //#endregion
18
+ export { __exportAll as t };