@flarenetwork/flare-periphery-contract-artifacts 0.1.5 → 0.1.6
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/coston/StateConnector/configs/AddressValidity.json +326 -0
- package/coston/StateConnector/configs/BalanceDecreasingTransaction.json +379 -0
- package/coston/StateConnector/configs/ConfirmedBlockHeightExists.json +363 -0
- package/coston/StateConnector/configs/EVMTransaction.json +600 -0
- package/coston/StateConnector/configs/Payment.json +512 -0
- package/coston/StateConnector/configs/ReferencedPaymentNonexistence.json +431 -0
- package/coston/StateConnector/configs/TypeTemplate.json +555 -0
- package/dist/coston/StateConnector/libs/ts/AttestationDefinitionStore.d.ts +68 -0
- package/dist/coston/StateConnector/libs/ts/AttestationDefinitionStore.d.ts.map +1 -0
- package/dist/coston/StateConnector/libs/ts/AttestationDefinitionStore.js +164 -0
- package/dist/coston/StateConnector/libs/ts/AttestationDefinitionStore.js.map +1 -0
- package/dist/coston/StateConnector/libs/ts/AttestationResponse.d.ts +33 -0
- package/dist/coston/StateConnector/libs/ts/AttestationResponse.d.ts.map +1 -0
- package/dist/coston/StateConnector/libs/ts/AttestationResponse.js +30 -0
- package/dist/coston/StateConnector/libs/ts/AttestationResponse.js.map +1 -0
- package/dist/coston/StateConnector/libs/ts/MerkleTree.d.ts +103 -0
- package/dist/coston/StateConnector/libs/ts/MerkleTree.d.ts.map +1 -0
- package/dist/coston/StateConnector/libs/ts/MerkleTree.js +212 -0
- package/dist/coston/StateConnector/libs/ts/MerkleTree.js.map +1 -0
- package/dist/coston/StateConnector/libs/ts/config-types.d.ts +143 -0
- package/dist/coston/StateConnector/libs/ts/config-types.d.ts.map +1 -0
- package/dist/coston/StateConnector/libs/ts/config-types.js +3 -0
- package/dist/coston/StateConnector/libs/ts/config-types.js.map +1 -0
- package/dist/coston/StateConnector/libs/ts/interfaces.d.ts +32 -0
- package/dist/coston/StateConnector/libs/ts/interfaces.d.ts.map +1 -0
- package/dist/coston/StateConnector/libs/ts/interfaces.js +3 -0
- package/dist/coston/StateConnector/libs/ts/interfaces.js.map +1 -0
- package/dist/coston/StateConnector/libs/ts/random.d.ts +9 -0
- package/dist/coston/StateConnector/libs/ts/random.d.ts.map +1 -0
- package/dist/coston/StateConnector/libs/ts/random.js +70 -0
- package/dist/coston/StateConnector/libs/ts/random.js.map +1 -0
- package/dist/coston/StateConnector/libs/ts/utils.d.ts +73 -0
- package/dist/coston/StateConnector/libs/ts/utils.d.ts.map +1 -0
- package/dist/coston/StateConnector/libs/ts/utils.js +282 -0
- package/dist/coston/StateConnector/libs/ts/utils.js.map +1 -0
- package/dist/coston/StateConnector/typescript/AddressValidity.d.ts +95 -0
- package/dist/coston/StateConnector/typescript/AddressValidity.d.ts.map +1 -0
- package/dist/coston/StateConnector/typescript/AddressValidity.js +9 -0
- package/dist/coston/StateConnector/typescript/AddressValidity.js.map +1 -0
- package/dist/coston/StateConnector/typescript/BalanceDecreasingTransaction.d.ts +107 -0
- package/dist/coston/StateConnector/typescript/BalanceDecreasingTransaction.d.ts.map +1 -0
- package/dist/coston/StateConnector/typescript/BalanceDecreasingTransaction.js +9 -0
- package/dist/coston/StateConnector/typescript/BalanceDecreasingTransaction.js.map +1 -0
- package/dist/coston/StateConnector/typescript/ConfirmedBlockHeightExists.d.ts +103 -0
- package/dist/coston/StateConnector/typescript/ConfirmedBlockHeightExists.d.ts.map +1 -0
- package/dist/coston/StateConnector/typescript/ConfirmedBlockHeightExists.js +9 -0
- package/dist/coston/StateConnector/typescript/ConfirmedBlockHeightExists.js.map +1 -0
- package/dist/coston/StateConnector/typescript/EVMTransaction.d.ts +160 -0
- package/dist/coston/StateConnector/typescript/EVMTransaction.d.ts.map +1 -0
- package/dist/coston/StateConnector/typescript/EVMTransaction.js +9 -0
- package/dist/coston/StateConnector/typescript/EVMTransaction.js.map +1 -0
- package/dist/coston/StateConnector/typescript/Payment.d.ts +139 -0
- package/dist/coston/StateConnector/typescript/Payment.d.ts.map +1 -0
- package/dist/coston/StateConnector/typescript/Payment.js +9 -0
- package/dist/coston/StateConnector/typescript/Payment.js.map +1 -0
- package/dist/coston/StateConnector/typescript/ReferencedPaymentNonexistence.d.ts +115 -0
- package/dist/coston/StateConnector/typescript/ReferencedPaymentNonexistence.d.ts.map +1 -0
- package/dist/coston/StateConnector/typescript/ReferencedPaymentNonexistence.js +9 -0
- package/dist/coston/StateConnector/typescript/ReferencedPaymentNonexistence.js.map +1 -0
- package/dist/coston/StateConnector/typescript/TypeTemplate.d.ts +146 -0
- package/dist/coston/StateConnector/typescript/TypeTemplate.d.ts.map +1 -0
- package/dist/coston/StateConnector/typescript/TypeTemplate.js +9 -0
- package/dist/coston/StateConnector/typescript/TypeTemplate.js.map +1 -0
- package/dist/coston/StateConnector/typescript/data-sources/data-sources.d.ts +29 -0
- package/dist/coston/StateConnector/typescript/data-sources/data-sources.d.ts.map +1 -0
- package/dist/coston/StateConnector/typescript/data-sources/data-sources.js +33 -0
- package/dist/coston/StateConnector/typescript/data-sources/data-sources.js.map +1 -0
- package/dist/coston/StateConnector/typescript/index.d.ts +9 -0
- package/dist/coston/StateConnector/typescript/index.d.ts.map +1 -0
- package/dist/coston/StateConnector/typescript/index.js +25 -0
- package/dist/coston/StateConnector/typescript/index.js.map +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,363 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "ConfirmedBlockHeightExists",
|
|
3
|
+
"fullComment": " @custom:name ConfirmedBlockHeightExists\n @custom:id 0x02\n @custom:supported BTC, DOGE, XRP, testBTC, testDOGE, testXRP\n @author Flare\n @notice An assertion that a block with `blockNumber` is confirmed.\n It also provides data to compute the block production rate in the given time range.\n @custom:verification It is checked that the block with `blockNumber` is confirmed by at least `numberOfConfirmations`.\n If it is not, the request is rejected. We note a block on the tip of the chain is confirmed by 1 block.\n Then `lowestQueryWindowBlock` is determined and its number and timestamp are extracted.\n Current confirmation heights consensus:\n | `Chain` | `chainId` | `numberOfConfirmations` | `timestamp ` |\n | ------- | --------- | ----------------------- | ------------ |\n | `BTC` | 0 | 6 | mediantime |\n | `DOGE` | 2 | 60 | mediantime |\n | `XRP` | 3 | 3 | close_time |\n @custom:lut `lowestQueryWindowBlockTimestamp`",
|
|
4
|
+
"description": "An assertion that a block with `blockNumber` is confirmed.\n It also provides data to compute the block production rate in the given time range.",
|
|
5
|
+
"supported": [
|
|
6
|
+
"BTC",
|
|
7
|
+
"DOGE",
|
|
8
|
+
"XRP",
|
|
9
|
+
"testBTC",
|
|
10
|
+
"testDOGE",
|
|
11
|
+
"testXRP"
|
|
12
|
+
],
|
|
13
|
+
"verification": "It is checked that the block with `blockNumber` is confirmed by at least `numberOfConfirmations`.\n If it is not, the request is rejected. We note a block on the tip of the chain is confirmed by 1 block.\n Then `lowestQueryWindowBlock` is determined and its number and timestamp are extracted.\n Current confirmation heights consensus:\n | `Chain` | `chainId` | `numberOfConfirmations` | `timestamp ` |\n | ------- | --------- | ----------------------- | ------------ |\n | `BTC` | 0 | 6 | mediantime |\n | `DOGE` | 2 | 60 | mediantime |\n | `XRP` | 3 | 3 | close_time |\n ",
|
|
14
|
+
"lut": "`lowestQueryWindowBlockTimestamp`",
|
|
15
|
+
"proof": {
|
|
16
|
+
"name": "Proof",
|
|
17
|
+
"description": "Toplevel proof",
|
|
18
|
+
"above": "",
|
|
19
|
+
"below": "",
|
|
20
|
+
"fullComment": " @notice Toplevel proof\n @param merkleProof Merkle proof corresponding to the attestation response.\n @param data Attestation response.",
|
|
21
|
+
"params": [
|
|
22
|
+
{
|
|
23
|
+
"name": "merkleProof",
|
|
24
|
+
"type": "bytes32[]",
|
|
25
|
+
"typeSimple": "bytes32[]",
|
|
26
|
+
"comment": "Merkle proof corresponding to the attestation response."
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"name": "data",
|
|
30
|
+
"type": "struct ConfirmedBlockHeightExists.Response",
|
|
31
|
+
"typeSimple": "Response",
|
|
32
|
+
"comment": "Attestation response."
|
|
33
|
+
}
|
|
34
|
+
]
|
|
35
|
+
},
|
|
36
|
+
"request": {
|
|
37
|
+
"name": "Request",
|
|
38
|
+
"description": "Toplevel request",
|
|
39
|
+
"above": "",
|
|
40
|
+
"below": "",
|
|
41
|
+
"fullComment": " @notice Toplevel request\n @param attestationType ID of the attestation type.\n @param sourceId ID of the data source.\n @param messageIntegrityCode `MessageIntegrityCode` that is derived from the expected response as defined.\n @param requestBody Data defining the request. Type (struct) and interpretation is determined by the `attestationType`.",
|
|
42
|
+
"params": [
|
|
43
|
+
{
|
|
44
|
+
"name": "attestationType",
|
|
45
|
+
"type": "bytes32",
|
|
46
|
+
"typeSimple": "bytes32",
|
|
47
|
+
"comment": "ID of the attestation type."
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"name": "sourceId",
|
|
51
|
+
"type": "bytes32",
|
|
52
|
+
"typeSimple": "bytes32",
|
|
53
|
+
"comment": "ID of the data source."
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"name": "messageIntegrityCode",
|
|
57
|
+
"type": "bytes32",
|
|
58
|
+
"typeSimple": "bytes32",
|
|
59
|
+
"comment": "`MessageIntegrityCode` that is derived from the expected response as defined."
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"name": "requestBody",
|
|
63
|
+
"type": "struct ConfirmedBlockHeightExists.RequestBody",
|
|
64
|
+
"typeSimple": "RequestBody",
|
|
65
|
+
"comment": "Data defining the request. Type (struct) and interpretation is determined by the `attestationType`."
|
|
66
|
+
}
|
|
67
|
+
]
|
|
68
|
+
},
|
|
69
|
+
"response": {
|
|
70
|
+
"name": "Response",
|
|
71
|
+
"description": "Toplevel response",
|
|
72
|
+
"above": "",
|
|
73
|
+
"below": "",
|
|
74
|
+
"fullComment": " @notice Toplevel response\n @param attestationType Extracted from the request.\n @param sourceId Extracted from the request.\n @param votingRound The ID of the State Connector round in which the request was considered.\n @param lowestUsedTimestamp The lowest timestamp used to generate the response.\n @param requestBody Extracted from the request.\n @param responseBody Data defining the response. The verification rules for the construction of the response body and the type are defined per specific `attestationType`.",
|
|
75
|
+
"params": [
|
|
76
|
+
{
|
|
77
|
+
"name": "attestationType",
|
|
78
|
+
"type": "bytes32",
|
|
79
|
+
"typeSimple": "bytes32",
|
|
80
|
+
"comment": "Extracted from the request."
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"name": "sourceId",
|
|
84
|
+
"type": "bytes32",
|
|
85
|
+
"typeSimple": "bytes32",
|
|
86
|
+
"comment": "Extracted from the request."
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"name": "votingRound",
|
|
90
|
+
"type": "uint64",
|
|
91
|
+
"typeSimple": "uint64",
|
|
92
|
+
"comment": "The ID of the State Connector round in which the request was considered."
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"name": "lowestUsedTimestamp",
|
|
96
|
+
"type": "uint64",
|
|
97
|
+
"typeSimple": "uint64",
|
|
98
|
+
"comment": "The lowest timestamp used to generate the response."
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"name": "requestBody",
|
|
102
|
+
"type": "struct ConfirmedBlockHeightExists.RequestBody",
|
|
103
|
+
"typeSimple": "RequestBody",
|
|
104
|
+
"comment": "Extracted from the request."
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"name": "responseBody",
|
|
108
|
+
"type": "struct ConfirmedBlockHeightExists.ResponseBody",
|
|
109
|
+
"typeSimple": "ResponseBody",
|
|
110
|
+
"comment": "Data defining the response. The verification rules for the construction of the response body and the type are defined per specific `attestationType`."
|
|
111
|
+
}
|
|
112
|
+
]
|
|
113
|
+
},
|
|
114
|
+
"requestBody": {
|
|
115
|
+
"name": "RequestBody",
|
|
116
|
+
"description": "Request body for ConfirmedBlockHeightExistsType attestation type",
|
|
117
|
+
"above": "",
|
|
118
|
+
"below": "",
|
|
119
|
+
"fullComment": " @notice Request body for ConfirmedBlockHeightExistsType attestation type\n @param blockNumber The number of the block the request wants a confirmation of.\n @param queryWindow The length of the period in which the block production rate is to be computed.",
|
|
120
|
+
"params": [
|
|
121
|
+
{
|
|
122
|
+
"name": "blockNumber",
|
|
123
|
+
"type": "uint64",
|
|
124
|
+
"typeSimple": "uint64",
|
|
125
|
+
"comment": "The number of the block the request wants a confirmation of."
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"name": "queryWindow",
|
|
129
|
+
"type": "uint64",
|
|
130
|
+
"typeSimple": "uint64",
|
|
131
|
+
"comment": "The length of the period in which the block production rate is to be computed."
|
|
132
|
+
}
|
|
133
|
+
]
|
|
134
|
+
},
|
|
135
|
+
"responseBody": {
|
|
136
|
+
"name": "ResponseBody",
|
|
137
|
+
"description": "Response body for ConfirmedBlockHeightExistsType attestation type",
|
|
138
|
+
"above": "",
|
|
139
|
+
"below": "`blockNumber`, `lowestQueryWindowBlockNumber`, `blockTimestamp` and `lowestQueryWindowBlockTimestamp` can be used to compute the average block production time in the specified block range.",
|
|
140
|
+
"fullComment": " @notice Response body for ConfirmedBlockHeightExistsType attestation type\n @custom:below `blockNumber`, `lowestQueryWindowBlockNumber`, `blockTimestamp` and `lowestQueryWindowBlockTimestamp` can be used to compute the average block production time in the specified block range.\n @param blockTimestamp The timestamp of the block with `blockNumber`.\n @param numberOfConfirmations The depth at which a block is considered confirmed depending on the chain. All attestation providers must agree on this number.\n @param lowestQueryWindowBlockNumber The block number of the latest block that has a timestamp strictly smaller than `blockTimestamp` - `queryWindow`.\n @param lowestQueryWindowBlockTimestamp The timestamp of the block at height `lowestQueryWindowBlockNumber`.",
|
|
141
|
+
"params": [
|
|
142
|
+
{
|
|
143
|
+
"name": "blockTimestamp",
|
|
144
|
+
"type": "uint64",
|
|
145
|
+
"typeSimple": "uint64",
|
|
146
|
+
"comment": "The timestamp of the block with `blockNumber`."
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
"name": "numberOfConfirmations",
|
|
150
|
+
"type": "uint64",
|
|
151
|
+
"typeSimple": "uint64",
|
|
152
|
+
"comment": "The depth at which a block is considered confirmed depending on the chain. All attestation providers must agree on this number."
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
"name": "lowestQueryWindowBlockNumber",
|
|
156
|
+
"type": "uint64",
|
|
157
|
+
"typeSimple": "uint64",
|
|
158
|
+
"comment": "The block number of the latest block that has a timestamp strictly smaller than `blockTimestamp` - `queryWindow`."
|
|
159
|
+
},
|
|
160
|
+
{
|
|
161
|
+
"name": "lowestQueryWindowBlockTimestamp",
|
|
162
|
+
"type": "uint64",
|
|
163
|
+
"typeSimple": "uint64",
|
|
164
|
+
"comment": "The timestamp of the block at height `lowestQueryWindowBlockNumber`."
|
|
165
|
+
}
|
|
166
|
+
]
|
|
167
|
+
},
|
|
168
|
+
"requestStructs": [],
|
|
169
|
+
"responseStructs": [],
|
|
170
|
+
"requestAbi": {
|
|
171
|
+
"components": [
|
|
172
|
+
{
|
|
173
|
+
"internalType": "bytes32",
|
|
174
|
+
"name": "attestationType",
|
|
175
|
+
"type": "bytes32"
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"internalType": "bytes32",
|
|
179
|
+
"name": "sourceId",
|
|
180
|
+
"type": "bytes32"
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
"internalType": "bytes32",
|
|
184
|
+
"name": "messageIntegrityCode",
|
|
185
|
+
"type": "bytes32"
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"components": [
|
|
189
|
+
{
|
|
190
|
+
"internalType": "uint64",
|
|
191
|
+
"name": "blockNumber",
|
|
192
|
+
"type": "uint64"
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
"internalType": "uint64",
|
|
196
|
+
"name": "queryWindow",
|
|
197
|
+
"type": "uint64"
|
|
198
|
+
}
|
|
199
|
+
],
|
|
200
|
+
"internalType": "struct ConfirmedBlockHeightExists.RequestBody",
|
|
201
|
+
"name": "requestBody",
|
|
202
|
+
"type": "tuple"
|
|
203
|
+
}
|
|
204
|
+
],
|
|
205
|
+
"internalType": "struct ConfirmedBlockHeightExists.Request",
|
|
206
|
+
"name": "_request",
|
|
207
|
+
"type": "tuple"
|
|
208
|
+
},
|
|
209
|
+
"responseAbi": {
|
|
210
|
+
"components": [
|
|
211
|
+
{
|
|
212
|
+
"internalType": "bytes32",
|
|
213
|
+
"name": "attestationType",
|
|
214
|
+
"type": "bytes32"
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
"internalType": "bytes32",
|
|
218
|
+
"name": "sourceId",
|
|
219
|
+
"type": "bytes32"
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
"internalType": "uint64",
|
|
223
|
+
"name": "votingRound",
|
|
224
|
+
"type": "uint64"
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
"internalType": "uint64",
|
|
228
|
+
"name": "lowestUsedTimestamp",
|
|
229
|
+
"type": "uint64"
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
"components": [
|
|
233
|
+
{
|
|
234
|
+
"internalType": "uint64",
|
|
235
|
+
"name": "blockNumber",
|
|
236
|
+
"type": "uint64"
|
|
237
|
+
},
|
|
238
|
+
{
|
|
239
|
+
"internalType": "uint64",
|
|
240
|
+
"name": "queryWindow",
|
|
241
|
+
"type": "uint64"
|
|
242
|
+
}
|
|
243
|
+
],
|
|
244
|
+
"internalType": "struct ConfirmedBlockHeightExists.RequestBody",
|
|
245
|
+
"name": "requestBody",
|
|
246
|
+
"type": "tuple"
|
|
247
|
+
},
|
|
248
|
+
{
|
|
249
|
+
"components": [
|
|
250
|
+
{
|
|
251
|
+
"internalType": "uint64",
|
|
252
|
+
"name": "blockTimestamp",
|
|
253
|
+
"type": "uint64"
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
"internalType": "uint64",
|
|
257
|
+
"name": "numberOfConfirmations",
|
|
258
|
+
"type": "uint64"
|
|
259
|
+
},
|
|
260
|
+
{
|
|
261
|
+
"internalType": "uint64",
|
|
262
|
+
"name": "lowestQueryWindowBlockNumber",
|
|
263
|
+
"type": "uint64"
|
|
264
|
+
},
|
|
265
|
+
{
|
|
266
|
+
"internalType": "uint64",
|
|
267
|
+
"name": "lowestQueryWindowBlockTimestamp",
|
|
268
|
+
"type": "uint64"
|
|
269
|
+
}
|
|
270
|
+
],
|
|
271
|
+
"internalType": "struct ConfirmedBlockHeightExists.ResponseBody",
|
|
272
|
+
"name": "responseBody",
|
|
273
|
+
"type": "tuple"
|
|
274
|
+
}
|
|
275
|
+
],
|
|
276
|
+
"internalType": "struct ConfirmedBlockHeightExists.Response",
|
|
277
|
+
"name": "_response",
|
|
278
|
+
"type": "tuple"
|
|
279
|
+
},
|
|
280
|
+
"proofAbi": {
|
|
281
|
+
"components": [
|
|
282
|
+
{
|
|
283
|
+
"internalType": "bytes32[]",
|
|
284
|
+
"name": "merkleProof",
|
|
285
|
+
"type": "bytes32[]"
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
"components": [
|
|
289
|
+
{
|
|
290
|
+
"internalType": "bytes32",
|
|
291
|
+
"name": "attestationType",
|
|
292
|
+
"type": "bytes32"
|
|
293
|
+
},
|
|
294
|
+
{
|
|
295
|
+
"internalType": "bytes32",
|
|
296
|
+
"name": "sourceId",
|
|
297
|
+
"type": "bytes32"
|
|
298
|
+
},
|
|
299
|
+
{
|
|
300
|
+
"internalType": "uint64",
|
|
301
|
+
"name": "votingRound",
|
|
302
|
+
"type": "uint64"
|
|
303
|
+
},
|
|
304
|
+
{
|
|
305
|
+
"internalType": "uint64",
|
|
306
|
+
"name": "lowestUsedTimestamp",
|
|
307
|
+
"type": "uint64"
|
|
308
|
+
},
|
|
309
|
+
{
|
|
310
|
+
"components": [
|
|
311
|
+
{
|
|
312
|
+
"internalType": "uint64",
|
|
313
|
+
"name": "blockNumber",
|
|
314
|
+
"type": "uint64"
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
"internalType": "uint64",
|
|
318
|
+
"name": "queryWindow",
|
|
319
|
+
"type": "uint64"
|
|
320
|
+
}
|
|
321
|
+
],
|
|
322
|
+
"internalType": "struct ConfirmedBlockHeightExists.RequestBody",
|
|
323
|
+
"name": "requestBody",
|
|
324
|
+
"type": "tuple"
|
|
325
|
+
},
|
|
326
|
+
{
|
|
327
|
+
"components": [
|
|
328
|
+
{
|
|
329
|
+
"internalType": "uint64",
|
|
330
|
+
"name": "blockTimestamp",
|
|
331
|
+
"type": "uint64"
|
|
332
|
+
},
|
|
333
|
+
{
|
|
334
|
+
"internalType": "uint64",
|
|
335
|
+
"name": "numberOfConfirmations",
|
|
336
|
+
"type": "uint64"
|
|
337
|
+
},
|
|
338
|
+
{
|
|
339
|
+
"internalType": "uint64",
|
|
340
|
+
"name": "lowestQueryWindowBlockNumber",
|
|
341
|
+
"type": "uint64"
|
|
342
|
+
},
|
|
343
|
+
{
|
|
344
|
+
"internalType": "uint64",
|
|
345
|
+
"name": "lowestQueryWindowBlockTimestamp",
|
|
346
|
+
"type": "uint64"
|
|
347
|
+
}
|
|
348
|
+
],
|
|
349
|
+
"internalType": "struct ConfirmedBlockHeightExists.ResponseBody",
|
|
350
|
+
"name": "responseBody",
|
|
351
|
+
"type": "tuple"
|
|
352
|
+
}
|
|
353
|
+
],
|
|
354
|
+
"internalType": "struct ConfirmedBlockHeightExists.Response",
|
|
355
|
+
"name": "data",
|
|
356
|
+
"type": "tuple"
|
|
357
|
+
}
|
|
358
|
+
],
|
|
359
|
+
"internalType": "struct ConfirmedBlockHeightExists.Proof",
|
|
360
|
+
"name": "_proof",
|
|
361
|
+
"type": "tuple"
|
|
362
|
+
}
|
|
363
|
+
}
|