We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3b589f commit b6d9c44Copy full SHA for b6d9c44
src/schemas/execute.yaml
@@ -178,6 +178,7 @@ EthSimulateBlockResultSuccess:
178
EthSimulateBlockResultSingleSuccess:
179
title: Result of eth_simulate block-level, with array of calls
180
type: object
181
+ unevaluatedProperties: false
182
allOf:
183
- $ref: '#/components/schemas/Block'
184
- type: object
@@ -270,13 +271,15 @@ CallResultFailure:
270
271
const: -32000
272
message:
273
type: string
274
+ pattern: "^execution reverted.*"
275
required: [code, message]
276
277
properties:
278
code:
279
const: -32015
280
281
282
+ pattern: "^vm execution error.*"
283
CallResultSuccess:
284
title: Result of call success
285
0 commit comments