forked from ethereum/beacon-APIs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.yaml
41 lines (41 loc) · 1.06 KB
/
index.yaml
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
StateId:
required: true
name: state_id
in: path
example: "head"
schema:
type: string
description: |
State identifier.
Can be one of: "head" (canonical head in node's view), "genesis", "finalized", "justified", \<slot\>, \<hex encoded stateRoot with 0x prefix\>.
BlockId:
required: true
name: block_id
in: path
example: "head"
schema:
type: string
description: |
Block identifier.
Can be one of: "head" (canonical head in node's view), "genesis", "finalized", \<slot\>, \<hex encoded blockRoot with 0x prefix\>.
BlockRoot:
required: true
name: block_root
in: path
schema:
$ref: "../types/primitive.yaml#/Root"
description: |
Block root.
\<hex encoded blockRoot with 0x prefix\>.
SkipRandaoVerification:
name: skip_randao_verification
in: query
required: false
description: |
Skip verification of the `randao_reveal` value. If this flag is set then the
`randao_reveal` must be set to the point at infinity (`0xc0..00`).
schema:
type: string
minLength: 0
maxLength: 0
allowEmptyValue: true