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
@@ -43,9 +42,8 @@ We define the following Python custom types for type hinting and readability:
43
42
44
43
| Name | SSZ equivalent | Description |
45
44
| - | - | - |
46
-
|`DataCell`|`Vector[BLSFieldElement, FIELD_ELEMENTS_PER_CELL]`| The data unit of a cell in the extended data matrix |
47
-
|`DataColumn`|`List[DataCell, MAX_BLOBS_PER_BLOCK]`| The data of each column in EIP7594 |
48
-
|`ExtendedMatrix`|`List[DataCell, MAX_BLOBS_PER_BLOCK * NUMBER_OF_COLUMNS]`| The full data with blobs and one-dimensional erasure coding extension |
45
+
|`DataColumn`|`List[Cell, MAX_BLOBS_PER_BLOCK]`| The data of each column in EIP7594 |
46
+
|`ExtendedMatrix`|`List[Cell, MAX_BLOBS_PER_BLOCK * NUMBER_OF_COLUMNS]`| The full data with blobs and one-dimensional erasure coding extension |
49
47
|`FlatExtendedMatrix`|`List[BLSFieldElement, MAX_BLOBS_PER_BLOCK * FIELD_ELEMENTS_PER_BLOB * NUMBER_OF_COLUMNS]`| The flattened format of `ExtendedMatrix`|
50
48
|`LineIndex`|`uint64`| The index of the rows or columns in `FlatExtendedMatrix` matrix |
51
49
@@ -55,7 +53,6 @@ We define the following Python custom types for type hinting and readability:
55
53
56
54
| Name | Value | Description |
57
55
| - | - | - |
58
-
|`FIELD_ELEMENTS_PER_CELL`|`uint64(2**6)` (= 64) | Elements per `DataCell`|
59
56
|`NUMBER_OF_COLUMNS`|`uint64((FIELD_ELEMENTS_PER_BLOB * 2) // FIELD_ELEMENTS_PER_CELL)` (= 128) | Number of columns in the extended data matrix. |
0 commit comments