Added common bls types

This commit is contained in:
Daniel Sanchez Quiros 2024-03-11 16:07:48 +01:00
parent 7ffb7cc7ed
commit 1961cdda68
1 changed files with 4 additions and 1 deletions

View File

@ -31,11 +31,14 @@ class ChunksMatrix(List[Row | Column]):
return ChunksMatrix(self.columns)
BLSPublickey = bytes
BLSPrivateKey = int
BLSSignature = bytes
@dataclass
class Attestation:
pass
signature: BLSSignature
@dataclass