@@ -40,8 +40,8 @@ This upgrade adds transaction execution to the beacon chain as part of the Verge
4040| Name | SSZ equivalent | Description |
4141| - | - | - |
4242| ` StateDiff ` | ` List[StemStateDiff, MAX_STEMS] ` | Only valid if list is sorted by stems |
43- | ` BandersnatchGroupElement ` | ` Bytes32 ` | |
44- | ` BandersnatchFieldElement ` | ` Bytes32 ` | |
43+ | ` BanderwagonGroupElement ` | ` Bytes32 ` | |
44+ | ` BanderwagonFieldElement ` | ` Bytes32 ` | |
4545| ` Stem ` | ` Bytes31 ` | |
4646
4747## Preset
@@ -140,19 +140,19 @@ StateDiff = List[StemStateDiff, MAX_STEMS]
140140
141141``` python
142142class IpaProof (Container ):
143- C_L = Vector[BandersnatchGroupElement , IPA_PROOF_DEPTH ]
144- C_R = Vector[BandersnatchGroupElement , IPA_PROOF_DEPTH ]
145- final_evaluation = BandersnatchFieldElement
143+ C_L = Vector[BanderwagonGroupElement , IPA_PROOF_DEPTH ]
144+ C_R = Vector[BanderwagonGroupElement , IPA_PROOF_DEPTH ]
145+ final_evaluation = BanderwagonFieldElement
146146```
147147
148148#### ` VerkleProof `
149149
150150``` python
151151class VerkleProof (Container ):
152- other_stems: List[Bytes32 , MAX_STEMS ]
152+ other_stems: List[Bytes31 , MAX_STEMS ]
153153 depth_extension_present: List[uint8, MAX_STEMS ]
154- commitments_by_path: List[BandersnatchGroupElement , MAX_STEMS * MAX_COMMITMENTS_PER_STEM ]
155- D: BandersnatchGroupElement
154+ commitments_by_path: List[BanderwagonGroupElement , MAX_STEMS * MAX_COMMITMENTS_PER_STEM ]
155+ D: BanderwagonGroupElement
156156 ipa_proof: IpaProof
157157```
158158
0 commit comments