You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: "The [`PayloadAttestationData`](https://github.com/ethereum/consensus-specs/blob/master/specs/gloas/beacon-chain.md#payloadattestationdata) object from the CL Gloas spec."
- description: "Hash tree root of the beacon block associated with this ptc attestation"
11
+
slot:
12
+
allOf:
13
+
- $ref: "../primitive.yaml#/Uint64"
14
+
- description: "The slot for which the payload attestation is being made"
15
+
payload_present:
16
+
type: boolean
17
+
description: "True if a SignedExecutionPayloadEnvelope has been seen referencing this block"
18
+
blob_data_available:
19
+
type: boolean
20
+
description: "True if blob data is available for this block"
21
+
22
+
PayloadAttestation:
23
+
type: object
24
+
description: "The [PayloadAttestation](https://github.com/ethereum/consensus-specs/blob/master/specs/gloas/beacon-chain.md#payloadattestation) object from the CL gloas spec."
25
+
required: [aggregation_bits, data, signature]
26
+
properties:
27
+
aggregation_bits:
28
+
$ref: "../primitive.yaml#/BitList"
29
+
data:
30
+
$ref: "#/Gloas/PayloadAttestationData"
31
+
signature:
32
+
$ref: "../primitive.yaml#/Signature"
33
+
34
+
PayloadAttestationMessage:
35
+
type: object
36
+
description: "The [`PayloadAttestationMessage`](https://github.com/ethereum/consensus-specs/blob/master/specs/gloas/beacon-chain.md#payloadattestationmessage) object from the CL Gloas spec."
37
+
required: [validator_index, data, signature]
38
+
properties:
39
+
validator_index:
40
+
allOf:
41
+
- $ref: "../primitive.yaml#/Uint64"
42
+
- description: "Index of the validator submitting the payload attestation"
43
+
data:
44
+
$ref: "#/Gloas/PayloadAttestationData"
45
+
signature:
46
+
allOf:
47
+
- $ref: "../primitive.yaml#/Signature"
48
+
- description: "BLS signature of the payload attestation data"
0 commit comments