# beacon_chain # Copyright (c) 2018-2024 Status Research & Development GmbH # Licensed and distributed under either of # * MIT license (license terms in the root directory or at https://opensource.org/licenses/MIT). # * Apache v2 license (license terms in the root directory or at https://www.apache.org/licenses/LICENSE-2.0). # at your option. This file may not be copied, modified, or distributed except according to those terms. {.push raises: [].} # Uncategorized helper functions from the spec import std/[algorithm, macros, tables], stew/results, ssz_serialization/proofs, chronicles, ./[beacon_time, crypto], eth/p2p/discoveryv5/[node], ./helpers, ./datatypes/[eip7594, deneb] var ctx: KzgCtx proc sortedColumnIndices*(columnsPerSubnet: ColumnIndex, subnetIds: HashSet[uint64]): seq[ColumnIndex] = var res: seq[ColumnIndex] = @[] for i in 0 ..< columnsPerSubnet: for subnetId in subnetIds: let index = DATA_COLUMN_SIDECAR_SUBNET_COUNT * i + subnetId result.add(ColumnIndex(index)) res.sort() res # https://github.com/ethereum/consensus-specs/blob/5f48840f4d768bf0e0a8156a3ed06ec333589007/specs/_features/eip7594/das-core.md#get_custody_columns proc get_custody_columns*(node_id: NodeId, custody_subnet_count: uint64): Result[seq[ColumnIndex], cstring] = # assert custody_subnet_count <= DATA_COLUMN_SIDECAR_SUBNET_COUNT if not (custody_subnet_count <= DATA_COLUMN_SIDECAR_SUBNET_COUNT): return err("Eip7594: Custody subnet count exceeds the DATA_COLUMN_SIDECAR_SUBNET_COUNT") var subnet_ids: HashSet[uint64] current_id = node_id while subnet_ids.len < int(custody_subnet_count): let subnet_id_bytes = eth2digest(current_id.toBytesLE().toOpenArray(0,8)) var subnet_id = bytes_to_uint64(subnet_id_bytes.data) mod DATA_COLUMN_SIDECAR_SUBNET_COUNT if subnet_id notin subnet_ids: subnet_ids.incl(subnet_id) if current_id == UInt256.high.NodeId: # Overflow prevention current_id = NodeId(StUint[256].zero) current_id += NodeId(StUint[256].one) # assert len(subnet_ids) == len(set(subnet_ids)) if not (subnet_ids.len == subnet_ids.len): return err("Eip7594: Subnet ids are not unique") # columns_per_subnet = NUMBER_OF_COLUMNS // DATA_COLUMN_SIDECAR_SUBNET_COUNT let columns_per_subnet = NUMBER_OF_COLUMNS div DATA_COLUMN_SIDECAR_SUBNET_COUNT ok(sortedColumnIndices(ColumnIndex(columns_per_subnet), subnet_ids)) # https://github.com/ethereum/consensus-specs/blob/5f48840f4d768bf0e0a8156a3ed06ec333589007/specs/_features/eip7594/das-core.md#compute_extended_matrix proc compute_extended_matrix* (blobs: seq[KzgBlob]): Result[ExtendedMatrix, cstring] = # This helper demonstrates the relationship between blobs and `ExtendedMatrix` var extended_matrix: ExtendedMatrix for blob in blobs: let res = computeCells(ctx, blob) if res.isErr: return err("Error computing kzg cells and kzg proofs") discard extended_matrix.add(res.get()) ok(extended_matrix) # https://github.com/ethereum/consensus-specs/blob/5f48840f4d768bf0e0a8156a3ed06ec333589007/specs/_features/eip7594/das-core.md#recover_matrix proc recover_matrix*(cells_dict: Table[(BlobIndex, CellID), KzgCell], blobCount: uint64): Result[ExtendedMatrix, cstring] = # This helper demonstrates how to apply recover_all_cells # The data structure for storing cells is implementation-dependent var extended_matrix: ExtendedMatrix for blobIndex in 0'u64..