-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathobserver-api.yaml
More file actions
319 lines (312 loc) · 9.72 KB
/
Copy pathobserver-api.yaml
File metadata and controls
319 lines (312 loc) · 9.72 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
openapi: 3.0.3
info:
title: Hydra Explorer - Observer API
version: 1.1.0
description: |-
API to be used by hydra-chain-observer instances to report observations of Hydra Head transactions to a hydra-explorer instance.
license:
name: Apache 2.0
url: http://www.apache.org/licenses/LICENSE-2.0.html
externalDocs:
url: http://hydra.family
description: More information about the Hydra protocol
servers:
- url: "http://{host}:{port}"
variables:
host:
default: "localhost"
port:
default: "8080"
paths:
/observations/{network}/{version}:
post:
summary: Submit a new Hydra Head protocol observation from given network and protocol version
operationId: postObservations
parameters:
- in: path
name: network
schema:
oneOf:
- title: Mainnet
type: string
enum: ["mainnet"]
- title: Network magic
$ref: "#/components/schemas/NetworkMagic"
required: true
description: |
Cardano network on which the observation was made. Identified by the string "mainnet" or the network magic number. For example 764824073 for mainnet or 1 for preprod.
- in: path
name: version
schema:
$ref: "#/components/schemas/HydraVersion"
required: true
description: Semantic version of the observer, currently corresponding to hydra protocol version.
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/Observation"
required: true
responses:
"200":
description: Successful reported observation
"400":
description: Invalid observation
components:
schemas:
NetworkMagic:
$ref: "https://raw.githubusercontent.com/CardanoSolutions/cardanonical/refs/heads/main/cardano.json#definitions/NetworkMagic"
HydraVersion:
$ref: "https://raw.githubusercontent.com/cardano-scaling/hydra/master/hydra-node/json-schemas/common.yaml#definitions/HydraVersion"
Observation:
type: object
required:
- point
- blockNo
properties:
point:
$ref: "https://raw.githubusercontent.com/cardano-scaling/hydra/master/hydra-node/json-schemas/common.yaml#definitions/ChainPoint"
blockNo:
type: integer
observed:
$ref: "#/components/schemas/HeadObservation"
observedTx:
description: "DEPRECATED: Legacy field for observations"
nullable: true
allOf:
- $ref: "#/components/schemas/OnChainTx"
HeadObservation:
description: >-
Hydra protocol transaction as observed by hydra-chain-observer.
# TODO detail this
type: object
OnChainTx:
description: >-
Hydra protocol transaction as observed by the hydra-node.
oneOf:
- title: OnInitTx
type: object
additionalProperties: false
required:
- tag
- headId
- headSeed
- headParameters
- participants
description: >-
The initial transaction of the Head, announcing various parameters and
the parties, has been posted on-chain.
properties:
tag:
type: string
enum: ["OnInitTx"]
headId:
$ref: "api.yaml#/components/schemas/HeadId"
headSeed:
$ref: "api.yaml#/components/schemas/HeadSeed"
headParameters:
$ref: "api.yaml#/components/schemas/HeadParameters"
participants:
type: array
items:
$ref: "api.yaml#/components/schemas/OnChainId"
- title: OnDepositTx
type: object
additionalProperties: false
required:
- tag
- headId
- deposited
- depositTxId
- deadline
description: >-
The deposit transaction locking some UTxO to a deposit script.
properties:
tag:
type: string
enum: ["OnDepositTx"]
headId:
$ref: "api.yaml#/components/schemas/HeadId"
deposited:
$ref: "api.yaml#/components/schemas/UTxO"
depositTxId:
type: string
deadline:
$ref: "api.yaml#/components/schemas/UTCTime"
- title: OnRecoverTx
type: object
additionalProperties: false
required:
- tag
- headId
- recoveredTxId
- recoveredUTxO
description: >-
The recover transaction unlocking the deposited UTxO.
properties:
tag:
type: string
enum: ["OnRecoverTx"]
headId:
$ref: "api.yaml#/components/schemas/HeadId"
recoveredTxId:
$ref: "api.yaml#/components/schemas/TxId"
recoveredUTxO:
$ref: "api.yaml#/components/schemas/UTxO"
- title: OnIncrementTx
type: object
additionalProperties: false
required:
- tag
- headId
- newVersion
- depositTxId
description: >-
The increment transaction adding some UTxO from L1 into the Head.
properties:
tag:
type: string
enum: ["OnIncrementTx"]
headId:
$ref: "api.yaml#/components/schemas/HeadId"
newVersion:
$ref: "api.yaml#/components/schemas/SnapshotVersion"
depositTxId:
type: string
- title: OnCommitTx
type: object
additionalProperties: false
required:
- tag
- headId
- party
- committed
description: >-
The commit transaction from a party, committing some UTxO set to the
Head.
properties:
tag:
type: string
enum: ["OnCommitTx"]
headId:
$ref: "api.yaml#/components/schemas/HeadId"
party:
$ref: "api.yaml#/components/schemas/Party"
committed:
$ref: "api.yaml#/components/schemas/UTxO"
- title: OnAbortTx
type: object
additionalProperties: false
required:
- tag
- headId
properties:
tag:
type: string
enum: ["OnAbortTx"]
headId:
$ref: "api.yaml#/components/schemas/HeadId"
- title: OnIncrementTx
type: object
additionalProperties: false
required:
- tag
- headId
- newVersion
- committedUTxO
- depositScriptUTxO
properties:
tag:
type: string
enum: ["OnIncrementTx"]
headId:
$ref: "api.yaml#/components/schemas/HeadId"
newVersion:
$ref: "api.yaml#/components/schemas/SnapshotVersion"
committedUTxO:
$ref: "api.yaml#/components/schemas/UTxO"
depositScriptUTxO:
$ref: "api.yaml#/components/schemas/UTxO"
- title: OnDecrementTx
type: object
additionalProperties: false
required:
- tag
- headId
- newVersion
- distributedUTxO
properties:
tag:
type: string
enum: ["OnDecrementTx"]
headId:
$ref: "api.yaml#/components/schemas/HeadId"
newVersion:
$ref: "api.yaml#/components/schemas/SnapshotVersion"
distributedUTxO:
$ref: "api.yaml#/components/schemas/UTxO"
- title: OnCollectComTx
type: object
additionalProperties: false
required:
- tag
- headId
properties:
tag:
type: string
enum: ["OnCollectComTx"]
headId:
$ref: "api.yaml#/components/schemas/HeadId"
- title: OnCloseTx
type: object
additionalProperties: false
required:
- tag
- headId
- snapshotNumber
- contestationDeadline
properties:
tag:
type: string
enum: ["OnCloseTx"]
headId:
$ref: "api.yaml#/components/schemas/HeadId"
snapshotNumber:
type: integer
minimum: 0
contestationDeadline:
$ref: "api.yaml#/components/schemas/UTCTime"
- title: OnContestTx
type: object
additionalProperties: false
required:
- tag
- headId
- snapshotNumber
- contestationDeadline
properties:
tag:
type: string
enum: ["OnContestTx"]
headId:
$ref: "api.yaml#/components/schemas/HeadId"
snapshotNumber:
type: integer
minimum: 0
contestationDeadline:
$ref: "api.yaml#/components/schemas/UTCTime"
- title: OnFanoutTx
type: object
additionalProperties: false
required:
- tag
- headId
- fanoutUTxO
properties:
tag:
type: string
enum: ["OnFanoutTx"]
headId:
$ref: "api.yaml#/components/schemas/HeadId"
fanoutUTxO:
$ref: "api.yaml#/components/schemas/UTxO"