You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+90Lines changed: 90 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -162,6 +162,96 @@ The API spec (TBD) for the off-chain service should be adhered to by all Relay P
162
162
163
163
Explorers should be updated to track execution requests and link to their designated provider via quoter address.
164
164
165
+
## API Documentation
166
+
167
+
The Messaging Executor provides HTTP APIs for interacting with the relay service. The API specification is defined using [TypeSpec](https://typespec.io/) and can be generated as OpenAPI documentation.
168
+
169
+
### Building API Documentation
170
+
171
+
```bash
172
+
# Navigate to the api-docs directory
173
+
cd api-docs
174
+
175
+
# Install dependencies
176
+
npm install
177
+
178
+
# Compile TypeSpec to generate OpenAPI spec and JS client & models
0 commit comments