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
There are several new types defined in the spc. When these types are just alias of a generic type we use the generic one. But if these types are more complex or requires specific validation we have to create a specific class.
KZGCommitment we need an ssz version of it like SszPublicKey (will be in BeaconBlockBody schema to build a list of them via SszListSchema.create(KZGCommitment, ...))
KZGProof we need an ssz version of it like SszPublicKey (will be part of BlobsSidecar schema)
Blob we need an ssz version defined via SszByteVectorSchema.create() (will be part of BlobsSidecar schema as SszListSchema.create(Blob, ..))
The text was updated successfully, but these errors were encountered:
There are several new types defined in the spc. When these types are just alias of a generic type we use the generic one. But if these types are more complex or requires specific validation we have to create a specific class.
from polynomial commitments types we need to define:
KZGCommitment
we need an ssz version of it like SszPublicKey (will be inBeaconBlockBody
schema to build a list of them viaSszListSchema.create(KZGCommitment, ...)
)KZGProof
we need an ssz version of it like SszPublicKey (will be part ofBlobsSidecar
schema)Blob
we need an ssz version defined via SszByteVectorSchema.create() (will be part ofBlobsSidecar
schema asSszListSchema.create(Blob, ..)
)The text was updated successfully, but these errors were encountered: