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

feat(protocol): add firstBlobIndex to BatchMetadata #18785

Merged
merged 1 commit into from
Jan 17, 2025
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
1 change: 1 addition & 0 deletions packages/protocol/contracts/layer1/based/ITaikoInbox.sol
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ interface ITaikoInbox {
uint64 proposedIn; // Used by node/client
uint32 txListOffset;
uint32 txListSize;
uint8 firstBlobIndex;
uint8 numBlobs;
uint64 anchorBlockId;
bytes32 anchorBlockHash;
Expand Down
1 change: 1 addition & 0 deletions packages/protocol/contracts/layer1/based/TaikoInbox.sol
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,7 @@ abstract contract TaikoInbox is EssentialContract, ITaikoInbox, ITaiko, IFork {
proposedIn: uint64(block.number),
txListOffset: params.txListOffset,
txListSize: params.txListSize,
firstBlobIndex: params.firstBlobIndex,
numBlobs: calldataUsed ? 0 : params.numBlobs,
anchorBlockId: anchorBlockId,
anchorBlockHash: blockhash(anchorBlockId),
Expand Down