mirror of
https://github.com/logos-co/nomos-specs.git
synced 2025-01-09 15:15:47 +00:00
Added verifier module and blob type
This commit is contained in:
parent
322d09912c
commit
20d639435d
15
da/verifier.py
Normal file
15
da/verifier.py
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
from dataclasses import dataclass
|
||||||
|
from typing import List
|
||||||
|
from eth2spec.eip7594.mainnet import KZGCommitment as Commitment, KZGProof as Proof
|
||||||
|
|
||||||
|
|
||||||
|
@dataclass
|
||||||
|
class DABlob:
|
||||||
|
# this should be removed, but for now it shows the purpose
|
||||||
|
index: int
|
||||||
|
column: bytearray
|
||||||
|
column_commitment: Commitment
|
||||||
|
aggregated_column_commitment: Commitment
|
||||||
|
aggregated_column_proof: Proof
|
||||||
|
rows_commitments: List[Commitment]
|
||||||
|
rows_proofs: List[Proof]
|
Loading…
x
Reference in New Issue
Block a user