Skip to content

Commit

Permalink
update blob index size (#457)
Browse files Browse the repository at this point in the history
Co-authored-by: Robert Raynor <[email protected]>
  • Loading branch information
0x0aa0 and mooselumph authored Apr 8, 2024
1 parent b56aaf0 commit 5eb8b2f
Show file tree
Hide file tree
Showing 14 changed files with 146 additions and 125 deletions.
25 changes: 23 additions & 2 deletions contracts/bindings/AVSDirectory/binding.go

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion contracts/bindings/BLSApkRegistry/binding.go

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion contracts/bindings/BN254/binding.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion contracts/bindings/BitmapUtils/binding.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion contracts/bindings/DelegationManager/binding.go

Large diffs are not rendered by default.

148 changes: 74 additions & 74 deletions contracts/bindings/EigenDAServiceManager/binding.go

Large diffs are not rendered by default.

60 changes: 30 additions & 30 deletions contracts/bindings/IEigenDAServiceManager/binding.go

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion contracts/bindings/IndexRegistry/binding.go

Large diffs are not rendered by default.

18 changes: 9 additions & 9 deletions contracts/bindings/MockRollup/binding.go

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion contracts/bindings/OperatorStateRetriever/binding.go

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion contracts/bindings/RegistryCoordinator/binding.go

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion contracts/bindings/StakeRegistry/binding.go

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion contracts/src/libraries/EigenDARollupUtils.sol
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ library EigenDARollupUtils {
// STRUCTS
struct BlobVerificationProof {
uint32 batchId;
uint8 blobIndex;
uint32 blobIndex;
IEigenDAServiceManager.BatchMetadata batchMetadata;
bytes inclusionProof;
bytes quorumIndices;
Expand Down
2 changes: 1 addition & 1 deletion inabox/tests/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ func blobVerificationProofFromProto(verificationProof *disperserpb.BlobVerificat
}
return rollupbindings.EigenDARollupUtilsBlobVerificationProof{
BatchId: verificationProof.GetBatchId(),
BlobIndex: uint8(verificationProof.GetBlobIndex()),
BlobIndex: verificationProof.GetBlobIndex(),
BatchMetadata: batchMetadata,
InclusionProof: verificationProof.GetInclusionProof(),
QuorumIndices: verificationProof.GetQuorumIndexes(),
Expand Down

0 comments on commit 5eb8b2f

Please sign in to comment.