Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
80e194d
feat: add CLAUDE.md for Claude Code guidance
pcarranzav Aug 2, 2025
fce749b
feat: add implementation plan for CorrectLastEpoch message
pcarranzav Aug 3, 2025
ebbbd90
fix: address code review findings for CorrectLastEpoch plan
pcarranzav Aug 3, 2025
94cca3c
feat: add CorrectLastEpoch message type to Rust encoding
pcarranzav Aug 3, 2025
f16782a
test: add comprehensive unit tests for CorrectLastEpoch
pcarranzav Aug 3, 2025
987feb2
feat: implement CorrectLastEpoch in subgraph
pcarranzav Aug 3, 2025
0c155ef
docs: update TODO.md and context.md with implementation progress
pcarranzav Aug 3, 2025
01e678d
feat: implement CorrectLastEpoch message type
pcarranzav Aug 3, 2025
baf6e3d
docs: update TODO, context, and CLAUDE with implementation progress
pcarranzav Aug 3, 2025
1ee5060
fix: correct CLI implementation to match original requirements
pcarranzav Aug 3, 2025
ed25808
refactor: simplify CorrectLastEpoch schema and optimize epochBlockNum…
pcarranzav Aug 3, 2025
8729600
feat: complete CorrectLastEpoch CLI implementation
pcarranzav Aug 3, 2025
bf1d58e
fix: update format args to satisfy clippy uninlined_format_args lint
pcarranzav Aug 3, 2025
ab73de9
fix: correct all clippy uninlined_format_args lints
pcarranzav Aug 3, 2025
1ad6520
feat: add CorrectLastEpochMessage permission to arbitrum-sepolia config
pcarranzav Aug 3, 2025
b044cab
refactor: move CLI commands to separate modules for better organization
pcarranzav Aug 3, 2025
b85fa34
feat: enhance correct-last-epoch command with detailed message preview
pcarranzav Aug 3, 2025
38f614a
style: apply cargo fmt formatting
pcarranzav Aug 3, 2025
c4970b4
feat: add transaction details to correct-last-epoch output
pcarranzav Aug 3, 2025
5eb3798
feat: update subgraph configs for CorrectLastEpochMessage support
pcarranzav Aug 3, 2025
9bd6517
fix: correct off-by-one error in merkle root calculation
pcarranzav Aug 4, 2025
b850d79
chore: remove progress docs
pcarranzav Aug 4, 2025
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
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ target/
# Ignore node stuff
node_modules/
yarn-error.log
.yarn/
.yarnrc.yml

# Ignore build stuff
cache/
Expand All @@ -26,6 +28,9 @@ bin/
# Ignore matchstick bin output
.bin/

# Ignore test docker files
**/tests/.docker/

# Others
.env
.DS_Store
Expand Down
Loading