-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathwebsocket-reference.json
More file actions
320 lines (320 loc) · 10.3 KB
/
websocket-reference.json
File metadata and controls
320 lines (320 loc) · 10.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
{
"asyncapi": "3.0.0",
"id": "https://relay.link/websocket",
"info": {
"title": "Relay WebSocket API",
"version": "1.0.0",
"description": "WebSocket interface for subscribing to real-time request status updates.",
"contact": {
"name": "Relay Support",
"url": "https://relay.link/support"
},
"license": {
"name": "MIT",
"url": "https://opensource.org/licenses/MIT"
}
},
"defaultContentType": "application/json",
"servers": {
"production": {
"host": "ws.relay.link",
"pathname": "/",
"protocol": "wss",
"description": "Production WebSocket server",
"variables": {
"apiKey": {
"description": "Relay API key",
"default": "YOUR_API_KEY"
}
}
}
},
"channels": {
"relay-ws": {
"address": "relay-ws",
"description": "Stream transaction statuses for Relay transactions.",
"messages": {
"ConnectionReady": {
"name": "ConnectionReady",
"summary": "Sent by the server when the WebSocket connection is ready.",
"examples": [
{
"summary": "Connection established",
"payload": {
"type": "connection",
"status": "ready",
"data": {
"id": "9nqpzwmwh86"
}
}
}
],
"payload": {
"type": "object",
"properties": {
"type": { "type": "string", "enum": ["connection"] },
"status": { "type": "string", "enum": ["ready"] },
"data": {
"type": "object",
"properties": {
"id": { "type": "string" }
},
"required": ["id"]
}
},
"required": ["type", "status", "data"]
}
},
"SubscribeRequest": {
"name": "SubscribeRequest",
"summary": "Client requests subscription to real-time transaction status events.",
"examples": [
{
"summary": "Subscribe to request.status.updated",
"payload": {
"type": "subscribe",
"event": "request.status.updated",
"filters": {
"id": "0xae0827617d4ae75b406969971c2d4df9a8e8d819ff0f09581fb45ca123fcc7a0"
}
}
}
],
"payload": {
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": ["subscribe"],
"default": "subscribe"
},
"event": {
"type": "string",
"default": "request.status.updated"
},
"filters": {
"type": "object",
"properties": {
"id": { "type": "string" }
},
"required": ["id"]
}
},
"required": ["type", "event"]
}
},
"SubscribeResponse": {
"name": "SubscribeResponse",
"summary": "Server acknowledges a successful subscription.",
"examples": [
{
"summary": "Subscribe response",
"payload": {
"type": "subscribe",
"status": "success",
"data": {
"event": "request.status.updated",
"filters": {
"id": "0xae0827617d4ae75b406969971c2d4df9a8e8d819ff0f09581fb45ca123fcc7a0"
}
}
}
}
],
"payload": {
"type": "object",
"properties": {
"type": { "type": "string", "enum": ["subscribe"] },
"status": { "type": "string", "enum": ["success"] },
"data": {
"type": "object",
"properties": {
"event": { "type": "string" },
"filters": {
"type": "object",
"properties": {
"id": { "type": "string" }
},
"required": ["id"]
}
},
"required": ["event"]
}
},
"required": ["type", "status", "data"]
}
},
"UnsubscribeRequest": {
"name": "UnsubscribeRequest",
"summary": "Client unsubscribes from request.status.updated events. Not required if disconnecting from the websocket as the server cleans up automatically.",
"examples": [
{
"summary": "Unsubscribe request",
"payload": {
"type": "unsubscribe",
"event": "request.status.updated",
"filters": {
"id": "0xae0827617d4ae75b406969971c2d4df9a8e8d819ff0f09581fb45ca123fcc7a0"
}
}
}
],
"payload": {
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": ["unsubscribe"],
"default": "unsubscribe"
},
"event": {
"type": "string",
"default": "request.status.updated"
},
"filters": {
"type": "object",
"properties": {
"id": { "type": "string" }
},
"required": ["id"]
}
},
"required": ["type", "event"]
}
},
"UnsubscribeResponse": {
"name": "UnsubscribeResponse",
"summary": "Server confirms unsubscription.",
"examples": [
{
"summary": "Unsubscribe response",
"payload": {
"type": "unsubscribe",
"status": "success",
"data": {
"event": "request.status.updated"
}
}
}
],
"payload": {
"type": "object",
"properties": {
"type": { "type": "string", "enum": ["unsubscribe"] },
"status": { "type": "string", "enum": ["success"] },
"data": {
"type": "object",
"properties": {
"event": { "type": "string" }
},
"required": ["event"]
}
},
"required": ["type", "status", "data"]
}
},
"RequestStatusUpdatedEvent": {
"name": "RequestStatusUpdatedEvent",
"summary": "Server pushes real-time transaction status events.",
"examples": [
{
"summary": "Request status updated",
"payload": {
"event": "request.status.updated",
"data": {
"status": "pending",
"inTxHashes": [
"5Mmr6W2xicDPW3QuNVYcEiyVTxxVSBZ39zMugn9ePkuvZKc9ask4p33i4c81HTVthNFab5oKRCshCK6a1tveUyN6"
],
"txHashes": [],
"updatedAt": 1765989801294,
"originChainId": 792703809,
"destinationChainId": 8453,
"requestId": "0x0931cd6b5a77317ccfe2513d29309db748bbad68eeda9b1235f902622d2af43d"
},
"publishedAt": 1765989801309
}
}
],
"payload": {
"type": "object",
"properties": {
"event": { "type": "string", "enum": ["request.status.updated"] },
"data": {
"type": "object",
"properties": {
"status": { "type": "string" },
"inTxHashes": {
"type": "array",
"items": { "type": "string" }
},
"txHashes": {
"type": "array",
"items": { "type": "string" }
},
"updatedAt": { "type": "number" },
"originChainId": { "type": "number" },
"destinationChainId": { "type": "number" },
"requestId": { "type": "string" }
},
"required": [
"status",
"updatedAt",
"originChainId",
"destinationChainId",
"requestId"
]
},
"publishedAt": { "type": "number" }
},
"required": ["event", "data", "publishedAt"]
}
}
}
}
},
"operations": {
"receiveConnectionReady": {
"action": "send",
"channel": { "$ref": "#/channels/relay-ws" },
"summary": "Receive a connection-ready message from the server.",
"messages": [{ "$ref": "#/channels/relay-ws/messages/ConnectionReady" }]
},
"sendSubscribeRequest": {
"action": "receive",
"channel": { "$ref": "#/channels/relay-ws" },
"summary": "Send a subscribe request to the server.",
"messages": [{ "$ref": "#/channels/relay-ws/messages/SubscribeRequest" }]
},
"receiveSubscribeResponse": {
"action": "send",
"channel": { "$ref": "#/channels/relay-ws" },
"summary": "Receive subscription confirmation from the server.",
"messages": [{ "$ref": "#/channels/relay-ws/messages/SubscribeResponse" }]
},
"receiveRequestStatusUpdatedEvent": {
"action": "send",
"channel": { "$ref": "#/channels/relay-ws" },
"summary": "Receive request.status.updated events from the server.",
"messages": [
{ "$ref": "#/channels/relay-ws/messages/RequestStatusUpdatedEvent" }
]
},
"sendUnsubscribeRequest": {
"action": "receive",
"channel": { "$ref": "#/channels/relay-ws" },
"summary": "Send an unsubscribe request to the server.",
"messages": [
{ "$ref": "#/channels/relay-ws/messages/UnsubscribeRequest" }
]
},
"receiveUnsubscribeResponse": {
"action": "send",
"channel": { "$ref": "#/channels/relay-ws" },
"summary": "Receive an unsubscribe confirmation from the server.",
"messages": [
{ "$ref": "#/channels/relay-ws/messages/UnsubscribeResponse" }
]
}
}
}