From 619a1a295dc29c6740a14531823d5aaec5e05bbf Mon Sep 17 00:00:00 2001 From: Ethen Pociask Date: Mon, 1 Jul 2024 11:58:59 -0400 Subject: [PATCH] chore(contracts): Add batchHeaderHash field to BatchHeader struct in Svc Manager interface --- contracts/src/interfaces/IEigenDAServiceManager.sol | 1 + 1 file changed, 1 insertion(+) diff --git a/contracts/src/interfaces/IEigenDAServiceManager.sol b/contracts/src/interfaces/IEigenDAServiceManager.sol index 21221ea9be..4de176e95c 100644 --- a/contracts/src/interfaces/IEigenDAServiceManager.sol +++ b/contracts/src/interfaces/IEigenDAServiceManager.sol @@ -48,6 +48,7 @@ interface IEigenDAServiceManager is IServiceManager { bytes signedStakeForQuorums; // every bytes is an amount less than 100 specifying the percentage of stake // that has signed in the corresponding quorum in `quorumNumbers` uint32 referenceBlockNumber; + bytes batchHeaderHash; // the hash of the batch header - used for blob lookups against DA on a rollup } // Relevant metadata for a given datastore