Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update blob index size #457

Merged
merged 4 commits into from
Apr 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading