File tree 3 files changed +12
-0
lines changed
3 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -54,4 +54,9 @@ const (
54
54
MaxRandomByte = uint64 (1 << 8 - 1 ) // MaxRandomByte defines max for a random byte using for proposer and sync committee sampling.
55
55
MaxRandomValueElectra = uint64 (1 << 16 - 1 ) // MaxRandomValueElectra defines max for a random value using for proposer and sync committee sampling.
56
56
NumberOfColumns = 128 // NumberOfColumns refers to the specified number of data columns that can exist in a network.
57
+
58
+ // Introduced in Fulu network upgrade.
59
+ FieldElementsPerCell = 64 // FieldElementsPerCell refers to the specified number of field elements that can exist in a cell.
60
+ FieldElementsPerExtBlob = 8192 // FieldElementsPerExtBlob refers to the specified number of field elements that can exist in an extended blob.
61
+ KZGCommitmentsInclusionProofDepth = 4 // KZGCommitmentsInclusionProofDepth refers to the specified depth of the KZG commitments inclusion proof.
57
62
)
Original file line number Diff line number Diff line change @@ -54,4 +54,9 @@ const (
54
54
MaxRandomByte = uint64 (1 << 8 - 1 ) // Maximum value for a random value using for proposer and sync committee sampling.
55
55
MaxRandomValueElectra = uint64 (1 << 16 - 1 ) // Maximum value for a random value using for proposer and sync committee sampling.
56
56
NumberOfColumns = 128 // NumberOfColumns refers to the specified number of data columns that can exist in a network.
57
+
58
+ // Introduced in Fulu network upgrade.
59
+ FieldElementsPerCell = 64 // FieldElementsPerCell refers to the specified number of field elements that can exist in a cell.
60
+ FieldElementsPerExtBlob = 8192 // FieldElementsPerExtBlob refers to the specified number of field elements that can exist in an extended blob.
61
+ KZGCommitmentsInclusionProofDepth = 4 // KZGCommitmentsInclusionProofDepth refers to the specified depth of the KZG commitments inclusion proof.
57
62
)
Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ mainnet = {
25
25
"extra_data.size" : "32" ,
26
26
"max_blobs_per_block.size" : "6" ,
27
27
"max_blob_commitments.size" : "4096" ,
28
+ "max_cell_proofs_length.size" : "33554432" , # FIELD_ELEMENTS_PER_EXT_BLOB * MAX_BLOB_COMMITMENTS_PER_BLOCK
28
29
"kzg_commitment_inclusion_proof_depth.size" : "17" ,
29
30
"max_withdrawal_requests_per_payload.size" : "16" ,
30
31
"max_deposit_requests_per_payload.size" : "8192" ,
@@ -62,6 +63,7 @@ minimal = {
62
63
"extra_data.size" : "32" ,
63
64
"max_blobs_per_block.size" : "6" ,
64
65
"max_blob_commitments.size" : "32" ,
66
+ "max_cell_proofs_length.size" : "33554432" , # FIELD_ELEMENTS_PER_EXT_BLOB * MAX_BLOB_COMMITMENTS_PER_BLOCK
65
67
"kzg_commitment_inclusion_proof_depth.size" : "10" ,
66
68
"max_withdrawal_requests_per_payload.size" : "2" ,
67
69
"max_deposit_requests_per_payload.size" : "4" ,
You can’t perform that action at this time.
0 commit comments