@lodestar/beacon-node
Version:
A Typescript implementation of the beacon chain
11 lines • 769 B
TypeScript
import { deneb, fulu } from "@lodestar/types";
/**
* Optionally sanity-check that the KZG commitments match the versioned hashes in the transactions
* https://github.com/ethereum/consensus-specs/blob/11a037fd9227e29ee809c9397b09f8cc3383a8c0/specs/eip4844/validator.md#blob-kzg-commitments
*/
export declare function validateBlobsAndKzgCommitments(commitments: deneb.KZGCommitment[], proofs: deneb.KZGProof[], blobs: deneb.Blobs): Promise<void>;
/**
* Optionally sanity-check that the KZG commitments match the versioned hashes in the transactions
*/
export declare function validateCellsAndKzgCommitments(commitments: deneb.KZGCommitment[], proofs: fulu.KZGProof[], cells: fulu.Cell[][]): Promise<void>;
//# sourceMappingURL=validateBlobsAndKzgCommitments.d.ts.map