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(user-ops-indexer): support entrypoint v08 #1296

Open
wants to merge 7 commits into
base: main
Choose a base branch
from

Conversation

k1rill-fedoseev
Copy link
Member

@k1rill-fedoseev k1rill-fedoseev commented Mar 26, 2025

Summary by CodeRabbit

  • New Features

    • Now supports configuration of multiple contract addresses for user operation entry points along with new v0.8 functionality.
    • Enhanced transaction tracing with improved error detection and parent-child relationship handling.
  • Documentation

    • Updated configuration instructions and API definitions to reflect new multi-address settings and version enhancements.
  • Chores

    • Upgraded key dependencies and introduced a migration module.
    • Added new test fixtures to support robust validation of transaction processing.

@k1rill-fedoseev k1rill-fedoseev self-assigned this Mar 26, 2025
Copy link
Contributor

coderabbitai bot commented Mar 26, 2025

Walkthrough

This pull request introduces support for multiple entry points across User Ops Indexer versions. The README now indicates that contract addresses for entry points are comma separated, allowing for multiple inputs per version. In the codebase, single entry point fields and methods have been replaced with vectors, and new methods to match entry points have been added. The EntryPointVersion enum has been extended to include a new variant for v0.8. Alongside these changes, dependency versions (such as alloy) have been updated, SQL queries refined, and module imports streamlined. Additionally, protocol buffer definitions, swagger specifications, and migration scripts have been updated to accommodate the changes. New JSON fixtures for testing have also been introduced, ensuring that the updated logic is validated.

Poem

I'm a rabbit with a code-filled pace,
Hopping through changes with a smile on my face.
Multiple entry points now make me cheer,
With every bug nibbled, the future's clear.
Bytes and carrots in a playful embrace,
Debugging adventures at a rapid, joyful pace!
🐇 Let's hop on to a new release!


📜 Recent review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 2418141 and b3c907f.

📒 Files selected for processing (1)
  • user-ops-indexer/user-ops-indexer-proto/build.rs (1 hunks)
⏰ Context from checks skipped due to timeout of 90000ms (1)
  • GitHub Check: Docker build and docker push / build-and-push
🔇 Additional comments (1)
user-ops-indexer/user-ops-indexer-proto/build.rs (1)

24-24: LGTM: Good approach for flexible protobuf type handling

Adding the extern path mapping for Google's Protocol Buffer types is a good approach to support the multiple entry point versions. This change aligns with the PR objective of supporting entry point v0.8 by using well-known types from the prost-wkt-types crate.

✨ Finishing Touches
  • 📝 Generate Docstrings

🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai plan to trigger planning for file edits and PR creation.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@k1rill-fedoseev k1rill-fedoseev marked this pull request as ready for review March 28, 2025 13:33
@k1rill-fedoseev k1rill-fedoseev requested a review from Copilot March 28, 2025 16:48
Copy link

@Copilot Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

This PR introduces support for entrypoint v08 by updating proto definitions, migration scripts, and indexer logic to handle multiple entry points. Key changes include:

  • Updating proto messages and field names (renaming v07 to v07_v08) and deprecating raw user op messages.
  • Adding a new migration (m20250326_080441_entrypoint_v08.rs) to update the entrypoint type.
  • Refactoring indexer logic and settings to support vectors of entrypoint addresses for v06, v07, and v08.

Reviewed Changes

Copilot reviewed 22 out of 25 changed files in this pull request and generated 2 comments.

Show a summary per file
File Description
user-ops-indexer-proto/proto/user-ops-indexer.proto Renamed field and updated proto definitions to support entrypoint v08.
user-ops-indexer-proto/build.rs Added extern path for google.protobuf types.
user-ops-indexer-proto/Cargo.toml Included prost-wkt dependencies.
user-ops-indexer-migration Added migration script for v08 and updated migrator.
user-ops-indexer-logic/src/types/user_op.rs Updated raw user op conversion to use JSON instead of oneof.
user-ops-indexer-logic (v07, v06, base_indexer, settings, status, rpc_utils, tests) Refactored indexer logic for multi-entrypoint support and updated tests accordingly.
user-ops-indexer/README.md Updated environment variable documentation to include v08 settings.
Files not reviewed (3)
  • user-ops-indexer/user-ops-indexer-logic/src/indexer/tests/fixtures/handle_tx_v06_ok.json: Language not supported
  • user-ops-indexer/user-ops-indexer-logic/src/indexer/tests/fixtures/handle_tx_v07_ok.json: Language not supported
  • user-ops-indexer/user-ops-indexer-logic/src/indexer/tests/fixtures/handle_tx_v08_ok.json: Language not supported
Comments suppressed due to low confidence (1)

user-ops-indexer/user-ops-indexer-proto/proto/user-ops-indexer.proto:127

  • [nitpick] The field name 'v07_v08' could be ambiguous; consider renaming it to more explicitly reflect its purpose (e.g., 'v07_and_v08') or provide additional documentation to clarify its meaning.
  EntryPointIndexerStatus v07_v08 = 3;

@k1rill-fedoseev k1rill-fedoseev added the feat New feature label Apr 2, 2025
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

♻️ Duplicate comments (1)
user-ops-indexer/user-ops-indexer-logic/src/types/user_op.rs (1)

214-214: ⚠️ Potential issue

Improve error handling in JSON deserialization

Using .expect() for deserialization could cause a runtime panic if deserialization fails. Consider propagating the error or handling it gracefully to improve robustness.

-            raw: serde_json::from_value(raw).expect("deserialize raw failed"),
+            raw: match serde_json::from_value(raw) {
+                Ok(value) => value,
+                Err(e) => {
+                    eprintln!("Failed to deserialize raw: {}", e);
+                    return Err(e.into());
+                }
+            },
🧹 Nitpick comments (13)
user-ops-indexer/user-ops-indexer-migration/src/m20250326_080441_entrypoint_v08.rs (1)

15-17: Consider implementing a rollback strategy.

Leaving down empty means there is no way to remove the 'v0.8' value if you need to revert. If rollback is important, consider removing 'v0.8' from the type in the down method or adding a comment explaining why no rollback is required.

user-ops-indexer/user-ops-indexer-logic/src/indexer/rpc_utils.rs (1)

201-219: Inheriting reverted status with mark_reverted_parents.

This function ensures that if an ancestor trace has a non-empty error, all descendants also become reverted. The approach of tracking the earliest revert level is succinct. Confirm in tests that multi-level nesting and partial reverts produce the expected outcome.

Consider extended test coverage for multiple revert paths to ensure correctness of overshadowed or nested reverts.

user-ops-indexer/user-ops-indexer-server/src/indexer.rs (2)

69-69: Warning log message
The warning looks good for indicating that both v0.7 and v0.8 are off. If you frequently check logs to troubleshoot, consider whether tracing at “info” level is more appropriate.


83-83: Log statement includes entry points
Logging logic.entry_points() is informative. If the vector of entry points is large, you could consider using a debug/trace level to avoid verbose logs in production.

user-ops-indexer/user-ops-indexer-logic/src/indexer/v06/mod.rs (2)

43-45: Cloned vector of entry points
Returning a cloned vector is fine for read-only usage. If performance or duplication becomes a concern for large lists, consider returning a slice or reference.


47-49: Membership check
Using contains on a Vec is correct for small vectors. If the list grows significantly, a HashSet might improve performance.

user-ops-indexer/user-ops-indexer-logic/src/indexer/v07/mod.rs (3)

45-51: Combining entry points
Joining v07_entry_points and v08_entry_points into a single vector is straightforward. If you anticipate duplicates across both sets, consider deduplication or using a set structure.


53-55: Simplified membership check
matches_entry_point merges checks for v0.7 and v0.8. Same note on using a HashSet for large datasets.


236-241: Determine entry point version
Switching between V08 or V07 based on membership in v08_entry_points or v07_entry_points is correct. Consider an error case if the address is in neither.

user-ops-indexer/user-ops-indexer-logic/src/indexer/base_indexer.rs (4)

90-95: Refactor return type for consistency.

Although returning Option<sol_types::Result<T>> works, consider using a single anyhow::Result<Option<T>> or similar to provide clearer error propagation and uniformity.

-fn match_and_parse<T: SolEvent>(&self, entry_point: Address, log: &Log) -> Option<sol_types::Result<T>> {
-    if log.address() == entry_point && log.topic0() == Some(&T::SIGNATURE_HASH) {
-        Some(T::decode_log(&log.inner, true).map(|l| l.data))
-    } else {
-        None
-    }
+fn match_and_parse<T: SolEvent>(&self, entry_point: Address, log: &Log) -> anyhow::Result<Option<T>> {
+    if log.address() == entry_point && log.topic0() == Some(&T::SIGNATURE_HASH) {
+        T::decode_log(&log.inner, true)
+            .map(|l| Some(l.data))
+            .map_err(|e| anyhow::anyhow!(e))
+    } else {
+        Ok(None)
+    }
}

193-217: Potential performance consideration for many entry points.

Looping over all entry points with separate queries can be expensive if the list is large. Consider batching or parallelizing these calls to improve performance.


423-427: Graceful error handling for user ops parsing.

Combining zip with the bundling logic is concise. To further aid debugging, consider logging each parse failure more verbosely in the map_err branch.


700-767: Extensive v08 testing.

This test confirms the new variant’s correctness, verifying each field in UserOp. For completeness, consider an additional test covering multiple v08 entry points in one transaction to ensure multi-address functionality fully works.

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 794d012 and 2418141.

⛔ Files ignored due to path filters (1)
  • user-ops-indexer/Cargo.lock is excluded by !**/*.lock
📒 Files selected for processing (24)
  • user-ops-indexer/README.md (1 hunks)
  • user-ops-indexer/user-ops-indexer-entity/src/sea_orm_active_enums.rs (1 hunks)
  • user-ops-indexer/user-ops-indexer-logic/Cargo.toml (1 hunks)
  • user-ops-indexer/user-ops-indexer-logic/src/indexer/base_indexer.rs (11 hunks)
  • user-ops-indexer/user-ops-indexer-logic/src/indexer/common.rs (1 hunks)
  • user-ops-indexer/user-ops-indexer-logic/src/indexer/rpc_utils.rs (5 hunks)
  • user-ops-indexer/user-ops-indexer-logic/src/indexer/settings.rs (3 hunks)
  • user-ops-indexer/user-ops-indexer-logic/src/indexer/status.rs (3 hunks)
  • user-ops-indexer/user-ops-indexer-logic/src/indexer/tests/fixtures/handle_tx_v06_ok.json (1 hunks)
  • user-ops-indexer/user-ops-indexer-logic/src/indexer/tests/fixtures/handle_tx_v06_with_tracing_ok.json (1 hunks)
  • user-ops-indexer/user-ops-indexer-logic/src/indexer/tests/fixtures/handle_tx_v07_ok.json (1 hunks)
  • user-ops-indexer/user-ops-indexer-logic/src/indexer/tests/fixtures/handle_tx_v08_ok.json (1 hunks)
  • user-ops-indexer/user-ops-indexer-logic/src/indexer/v06/mod.rs (9 hunks)
  • user-ops-indexer/user-ops-indexer-logic/src/indexer/v07/mod.rs (9 hunks)
  • user-ops-indexer/user-ops-indexer-logic/src/repository/user_op.rs (1 hunks)
  • user-ops-indexer/user-ops-indexer-logic/src/types/user_op.rs (3 hunks)
  • user-ops-indexer/user-ops-indexer-migration/src/lib.rs (2 hunks)
  • user-ops-indexer/user-ops-indexer-migration/src/m20250326_080441_entrypoint_v08.rs (1 hunks)
  • user-ops-indexer/user-ops-indexer-proto/Cargo.toml (1 hunks)
  • user-ops-indexer/user-ops-indexer-proto/build.rs (1 hunks)
  • user-ops-indexer/user-ops-indexer-proto/proto/user-ops-indexer.proto (3 hunks)
  • user-ops-indexer/user-ops-indexer-proto/swagger/user-ops-indexer.swagger.yaml (3 hunks)
  • user-ops-indexer/user-ops-indexer-server/Cargo.toml (1 hunks)
  • user-ops-indexer/user-ops-indexer-server/src/indexer.rs (5 hunks)
🧰 Additional context used
🧬 Code Definitions (3)
user-ops-indexer/user-ops-indexer-migration/src/m20250326_080441_entrypoint_v08.rs (1)
user-ops-indexer/user-ops-indexer-migration/src/lib.rs (1)
  • from_sql (27-39)
user-ops-indexer/user-ops-indexer-logic/src/indexer/v07/mod.rs (2)
user-ops-indexer/user-ops-indexer-logic/src/indexer/v06/mod.rs (2)
  • entry_points (43-45)
  • matches_entry_point (47-49)
user-ops-indexer/user-ops-indexer-logic/src/indexer/common.rs (2)
  • extract_address (34-40)
  • extract_user_logs_boundaries (57-75)
user-ops-indexer/user-ops-indexer-logic/src/indexer/base_indexer.rs (2)
user-ops-indexer/user-ops-indexer-logic/src/indexer/v07/mod.rs (5)
  • entry_points (45-51)
  • matches_entry_point (53-55)
  • matches_handler_calldata (57-60)
  • parse_user_ops (62-155)
  • user_ops (125-154)
user-ops-indexer/user-ops-indexer-logic/src/indexer/v06/mod.rs (5)
  • entry_points (43-45)
  • matches_entry_point (47-49)
  • matches_handler_calldata (51-54)
  • parse_user_ops (56-149)
  • user_ops (119-148)
⏰ Context from checks skipped due to timeout of 90000ms (1)
  • GitHub Check: Docker build and docker push / build-and-push
🔇 Additional comments (71)
user-ops-indexer/user-ops-indexer-server/Cargo.toml (1)

22-22:

❓ Verification inconclusive

Significant version upgrade for alloy dependency.

The alloy dependency has been updated from version 0.9.2 to 0.13.0, which is a substantial version jump. While the requested features remain the same, this update may introduce breaking changes in the alloy API.

Please verify that all usages of the alloy library are compatible with the new version by running the following commands:


🏁 Script executed:

#!/bin/bash
# Check for any breaking changes in the alloy API usage
rg -t rust "::alloy::|use alloy" --include "*.rs"

Length of output: 493


Verify Alloy API Compatibility – Manual Verification Required

The alloy dependency was upgraded from version 0.9.2 to 0.13.0, which is a significant jump and may introduce breaking changes in the alloy API. The originally suggested verification command failed due to an invalid --include flag. To ensure that all alloy API usages are compatible with the new version, please re-run the check with the following corrected command:

#!/bin/bash
# Re-run the alloy usage search without the invalid --include option
rg -t rust '(::alloy::|use alloy)'

After executing the above command, please manually verify that there are no API usage changes or incompatibilities in your Rust codebase. Adjust the code as necessary if any breaking changes are identified.

user-ops-indexer/user-ops-indexer-proto/Cargo.toml (1)

11-12: New protobuf dependencies added for well-known types support.

The addition of prost-wkt and prost-wkt-types dependencies aligns with the changes in the proto file where google.protobuf.Struct is now used. These dependencies provide support for Protocol Buffer well-known types.

user-ops-indexer/user-ops-indexer-proto/proto/user-ops-indexer.proto (3)

127-127: Field renamed to accommodate multiple entry point versions.

The field has been renamed from v07 to v07_v08, indicating that the same status structure will be used for both v0.7 and v0.8 entry points. This is a good approach for consolidating status management.


182-182: Simplified UserOp raw field using well-known type.

The raw field has been changed from a specific oneof to a more generic google.protobuf.Struct type. This simplifies the message structure and provides more flexibility for handling different versions of user operations.


208-209:

❓ Verification inconclusive

Updated field indices for execute_target and execute_call_data.

The field indices have been updated to 35 and 36. Ensure that any clients using these fields are updated to use the new indices.


🏁 Script executed:

#!/bin/bash
# Check for any direct references to field indices in the codebase
rg -t rust "execute_target.*\b3[0-4]\b|execute_call_data.*\b3[0-4]\b"

Length of output: 71


Action Required: Confirm Updated Field Indices

The proto file at user-ops-indexer/user-ops-indexer-proto/proto/user-ops-indexer.proto now reflects the updated field indices for execute_target and execute_call_data (35 and 36). An initial regex check for references to indices 30–34 did not produce any matches. However, given the minimal output from the search, please perform a manual review to ensure no client code is still relying on the old indices.

  • Verify that no part of the codebase references outdated indices for these fields.
  • Confirm that all consuming clients have been updated to reference the new indices (35 and 36).
user-ops-indexer/user-ops-indexer-entity/src/sea_orm_active_enums.rs (1)

16-17: Added V08 variant to EntryPointVersion enum.

The addition of the V08 variant is consistent with the existing pattern and supports the new entry point version. This change appropriately maps to the "v0.8" string value in the database.

Make sure that all code paths handling EntryPointVersion are updated to account for this new variant:

#!/bin/bash
# Look for match expressions on EntryPointVersion that might need updating
rg -t rust "match.*EntryPointVersion" -A 10
user-ops-indexer/user-ops-indexer-logic/Cargo.toml (1)

32-32:

❓ Verification inconclusive

Verify compatibility with the alloy version upgrade

Updating from alloy 0.9.2 to 0.13.0 is a significant version bump that might introduce breaking API changes. While keeping the same features is good, ensure all code using the alloy library has been properly adapted to the new version.


🏁 Script executed:

#!/bin/bash
# Check the alloy changelog or release notes to understand breaking changes
echo "Checking alloy repo for changelog between versions 0.9.2 and 0.13.0"
git clone --depth 1 https://github.com/alloy-rs/alloy /tmp/alloy
cd /tmp/alloy
git log --oneline -- CHANGELOG.md | head -n 20

Length of output: 318


Action Required: Verify Alloy Compatibility Upgrade

The alloy version bump from 0.9.2 to 0.13.0 is significant and may introduce breaking changes. Please review the alloy CHANGELOG and release notes (e.g., by browsing the alloy repository) to confirm whether any API modifications affect our usage. Then, verify that all portions of our code utilizing alloy have been updated accordingly.

  • File: user-ops-indexer/user-ops-indexer-logic/Cargo.toml (line 32)
  • Snippet:
    alloy = { version = "0.13.0", features = ["contract", "pubsub", "provider-debug-api", "provider-trace-api"] }
user-ops-indexer/user-ops-indexer-migration/src/lib.rs (1)

7-7: Migration added for entrypoint v0.8 support

The addition of a new migration module for entrypoint v0.8 aligns well with the PR's objective to support multiple entry points. This structured approach to database schema evolution is appropriate.

Also applies to: 19-19

user-ops-indexer/user-ops-indexer-logic/src/indexer/common.rs (1)

5-5: Import style improvement

Consolidating the imports from sol_types into a single line improves code organization without affecting functionality.

user-ops-indexer/user-ops-indexer-proto/build.rs (1)

24-25: Protocol buffer configuration for Google WKT

Adding the extern path for Google protobuf types is necessary to support the updated message structures that use google.protobuf.Struct for more flexible representation of user operations.

user-ops-indexer/user-ops-indexer-logic/src/indexer/tests/fixtures/handle_tx_v08_ok.json (1)

1-141: Well-structured test fixture for v0.8 entry point support.

This new fixture provides comprehensive transaction data with all necessary fields and logs for testing v0.8 entry point handling. The transaction contains detailed information including logs with various topics and events that will be useful for thorough testing of the indexer's ability to process v0.8 transactions.

user-ops-indexer/user-ops-indexer-logic/src/indexer/tests/fixtures/handle_tx_v06_with_tracing_ok.json (1)

1-686: Detailed transaction tracing fixture improves test coverage.

This comprehensive fixture includes extensive transaction execution traces that will help validate internal contract calls and complex transaction flows. The level of detail enables more thorough testing of the indexer's ability to process transactions with complex execution paths.

user-ops-indexer/user-ops-indexer-logic/src/indexer/tests/fixtures/handle_tx_v07_ok.json (1)

1-246: Good addition of v0.7 transaction test fixture.

This test fixture properly captures the structure of v0.7 transactions with all relevant fields and logs. It provides a solid baseline for testing v0.7 handling alongside the new v0.8 support.

user-ops-indexer/user-ops-indexer-logic/src/indexer/tests/fixtures/handle_tx_v06_ok.json (1)

1-99: Well-structured v0.6 test fixture.

This fixture provides the necessary transaction data for testing v0.6 entry point handling, completing the set of test cases across supported versions.

user-ops-indexer/user-ops-indexer-logic/src/indexer/status.rs (4)

6-6: Appropriate field rename to support combined v0.7-v0.8 status tracking.

Renaming the field from v07 to v07_v08 aligns with the approach of handling v0.7 and v0.8 entry points together, suggesting they share similar enough behavior to use common status tracking.


33-33: Consistent update to status checking logic.

Correctly updated the reference to use the renamed field in the finished_past_indexing check.


35-35: Consistent field update in protocol buffer conversion.

Properly renamed the field in the conversion to the protocol buffer representation.


70-70: Updated version matcher to support combined v0.7-v0.8 status updates.

The version string update from "v0.7" to "v0.7-v0.8" ensures that status messages for both v0.7 and v0.8 entry points are directed to the shared status field.

user-ops-indexer/user-ops-indexer-migration/src/m20250326_080441_entrypoint_v08.rs (2)

3-4: Migration struct naming is appropriate.

Declaring a dedicated Migration struct with #[derive(DeriveMigrationName)] is a standard approach. This cleanly associates a descriptive name with the migration for tracking.


8-13:

✅ Verification successful

Confirm handling of adding new type values.

Altering an existing enum type to add 'v0.8' is fine, but ensure that any references or older code handling entry_point_version can accommodate this new value without breakage. Also confirm that code referencing 'v0.8' (e.g., queries, logic, or enumerations in other parts of the system) has been updated accordingly.

Please verify all references to the entry_point_version column:


🏁 Script executed:

#!/bin/bash
# Search for references to `entry_point_version` usage across the codebase.
rg -A 3 'entry_point_version'

Length of output: 14692


Updated enum variant integration verified

The migration adding 'v0.8' to the entry_point_version enum (in user-ops-indexer/user-ops-indexer-migration/src/m20250326_080441_entrypoint_v08.rs) is correctly integrated. Our search confirms that:

  • Business logic (e.g., in src/indexer/v07/mod.rs and src/indexer/base_indexer.rs) correctly uses EntryPointVersion::V08 alongside existing variants.
  • Schema definitions in Swagger, proto, and other files represent entry_point_version as a string, ensuring compatibility with the new enum value.

Please double-check that any specialized serialization or logic comparisons involving entry_point_version properly handle the new 'v0.8' value.

user-ops-indexer/user-ops-indexer-logic/src/repository/user_op.rs (1)

207-217: Review the GROUP BY usage.

Replacing SELECT DISTINCT logs.transaction_hash with grouping by logs.block_number, logs.block_hash, logs.transaction_hash can still yield unique transaction hashes, but verify that this grouping meets your data needs. If multiple logs share the same (transaction_hash, block_number, block_hash), the result should remain the same. However, consider whether plain DISTINCT might be more readable if deduplication is all you need.

user-ops-indexer/user-ops-indexer-logic/src/indexer/rpc_utils.rs (5)

12-12: Importing parity trace types.

Adding Action, CallType, and LocalizedTransactionTrace helps unify the logic across different tracing modules. No issues noted here; just ensure that other references to these types are consistent throughout the code.


86-86: New status field in CommonCallTrace.

Introducing pub status: bool clarifies whether the trace encountered an error. This is a good addition for simplifying error checks in downstream logic.


136-137: Marking reverted parents before parsing.

Calling mark_reverted_parents ensures child traces inherit their parent’s reverted status. This pre-processing is helpful for an accurate final status field. Confirm that no other methods rely on the unmodified traces, as this mutates trace data to reflect parent reverts.


151-158: Usage of status: t.trace.error.is_none() looks correct.

Assigning status based on absence of an error matches the intended semantics. This is straightforward and aligns with typical success/failure checks in trace-based logic.


170-199: Stack-based approach in flatten_geth_trace.

Switching to a stack-based traversal is clearer than a nested recursion. The while-loop popping CallFrames from a stack avoids deep recursion. The logic to tag child calls with parent revert errors is especially important to reflect real execution outcome. Code is readable and maintainable as is.

user-ops-indexer/user-ops-indexer-proto/swagger/user-ops-indexer.swagger.yaml (3)

350-361: Good addition of protobufNullValue type definition

The addition of the protobufNullValue enum type with appropriate description and default value correctly aligns with Protocol Buffers' standard null representation. This will help maintain consistency with the Protocol Buffers specification and improve integration with Protocol Buffer-based systems.


451-451: Appropriate field renaming for entry point indexer status

Renaming from v07 to v07_v08 properly indicates that this field now covers both v0.7 and v0.8 entry points, which is consistent with the new entry point version support being added.


574-575: Good schema simplification for UserOp raw data

Converting the raw user operation data to a generic object type simplifies the schema and provides more flexibility for handling different versions of entry points. This is a cleaner approach compared to maintaining separate version-specific message types.

user-ops-indexer/user-ops-indexer-logic/src/types/user_op.rs (3)

12-12: Good import addition for JSON serialization

The import of serde_json::json is appropriately added to support the refactored JSON object creation. This macro provides a more concise and readable way to create JSON structures.


156-170: Clean refactoring of V06 serialization logic

The refactoring to use the json! macro makes the code more readable and maintainable. The structured approach clearly shows the mapping of UserOp fields to their JSON representation.


172-198: Good reuse of serialization logic for V07 and V08

Combining the V07 and V08 cases is efficient since they share the same data structure. This approach reduces code duplication and makes future maintenance easier.

user-ops-indexer/README.md (3)

65-65: Good update to the V06 entry point description

Updating the description to "Entrypoint v0.6 contract addresses, comma separated" correctly reflects that multiple addresses can now be specified. This improvement aligns with the code changes in settings.rs.


67-67: Good update to the V07 entry point description

Similar to the V06 update, the description change to "Entrypoint v0.7 contract addresses, comma separated" properly indicates the support for multiple addresses.


68-69: Good addition of V08 entry point configuration

The addition of the V08 entry point configuration variables is well-documented and follows the same pattern as the existing entry points. The default value for the new entry point is also provided.

user-ops-indexer/user-ops-indexer-logic/src/indexer/settings.rs (4)

4-4: Good addition of CommaSeparator import

The import of serde_with::formats::CommaSeparator is appropriate for deserializing comma-separated values from configuration strings. This is necessary for the new functionality of supporting multiple entry point addresses.


34-47: Well-structured update to EntrypointsSettings

The modifications to the EntrypointsSettings struct properly implement support for multiple entry points per version. The use of serde_as with StringWithSeparator<CommaSeparator, Address> is an excellent choice for parsing comma-separated addresses from configuration strings.


102-107: Good default implementation for multiple entry points

The default implementation has been correctly updated to initialize the address fields as vectors, maintaining backward compatibility while adding support for the new V08 entry point.


34-108:

✅ Verification successful

Verify new entry point addresses are correctly configured

The addition of V08 entry point with address "4337084D9E255Ff0702461CF8895CE9E3b5Ff108" needs verification to ensure it's the correct official entry point address for v0.8.


🌐 Web query:

What is the official EntryPoint v0.8 address for ERC-4337?

💡 Result:

The official EntryPoint v0.8 contract address for ERC-4337 account abstraction is 0x4337084D9E255Ff0702461CF8895CE9E3b5Ff108[1][3][4]. This address is consistently referenced across:

  1. Candide's documentation as the entry point for EIP-7702-enabled UserOperations[1][3]
  2. The eth-infinitism/account-abstraction GitHub repository, which serves as the reference implementation for ERC-4337[4]
  3. Voltaire Bundler implementations handling EIP-7702 transactions[3]

The contract implements critical AA features including gas sponsorship, transaction batching, and permission management while maintaining backward compatibility with ERC-4337 infrastructure[1][4]. Developers can interact with it using standard ERC-4337 RPC methods like eth_sendUserOperation with added support for EIP-7702 authorization tuples[1][3].

Citations:


Verified V08 EntryPoint Address
The official EntryPoint v0.8 address for ERC-4337 has been confirmed as 0x4337084D9E255Ff0702461CF8895CE9E3b5Ff108 per multiple authoritative sources. No changes are required for the entry point configuration in user-ops-indexer/user-ops-indexer-logic/src/indexer/settings.rs.

user-ops-indexer/user-ops-indexer-server/src/indexer.rs (6)

23-23: Double-check combined toggle logic for v0.7 & v0.8
Setting status.v07_v08.enabled to settings.indexer.entrypoints.v07 || settings.indexer.entrypoints.v08 may be intended as an inclusive check enabling either version. If you require enabling both versions together instead, switch to a logical AND.

Do you want me to generate a script to search for downstream references to v07_v08.enabled to confirm the intended logic?


40-40: Ensure multiple entry points are properly handled
entry_points: settings.indexer.entrypoints.v06_entry_point.clone() implies v06_entry_point is a vector. Verify that any code referencing this entry point properly handles multiple addresses.


49-49: Unified condition for v0.7 or v0.8
Using a single conditional statement for v0.7 or v0.8 is concise. This enables the v0.7/v0.8 indexer logic if either is set to true.


54-63: Separate v0.7 and v0.8 entry points
Constructing v07_entry_points and v08_entry_points selectively based on the settings is clear and maintainable. This pattern correctly assigns empty vectors when a version is disabled.


88-88: ProviderBuilder usage
Switching to .connect is straightforward. Confirm that the new method usage is properly tested with your RPC provider.


132-132: Reconnection logic
Re-initializing client with the new .connect() method after a delay is correct. This should handle transient RPC failures gracefully.

user-ops-indexer/user-ops-indexer-logic/src/indexer/v06/mod.rs (5)

25-25: Support multiple entry points in v0.6
Switching from a single address to a Vec<Address> aligns with multi-entry design. This is a good improvement for extensibility.


29-29: Tracking entry point at the operation level
Adding entry_point: Address in ExtendedUserOperation provides clarity for which entry point each operation references.


60-60: Consistent usage of entry_point parameters
Your parse logic appropriately threads the entry_point value from the caller, ensuring each sub-operation references the correct address.

Also applies to: 62-62, 74-74, 86-86


95-111: User operation logs parsing
The sliding window technique that increments end until the correct log is found is sensible. A short-circuit for unmatched logs is implicitly handled by your bounds-check. This logic looks correct.


156-156: Use of user_op.entry_point
Referencing user_op.entry_point ensures each user operation is tied to its own entry point. This is coherent and should prevent mismatched event parsing.

Also applies to: 159-160, 164-164, 171-171, 182-182, 193-193, 209-209

user-ops-indexer/user-ops-indexer-logic/src/indexer/v07/mod.rs (8)

13-13: Importing address! macro
Including address from alloy::primitives suggests new usage for a sentinel address. Ensure you have relevant tests for that logic.


26-27: Separate fields for v0.7 vs. v0.8
Maintaining distinct vectors v07_entry_points and v08_entry_points is flexible and well-scoped. This aligns with your multi-version approach.


31-31: Explicit entry_point in ExtendedUserOperation
Storing the entry point at the operation level is consistent with v06 logic.


39-39: Combination version string
Declaring VERSION as "v0.7-v0.8" is a practical approach to unify logging and identification for both versions.


66-66: Consistent entry point usage
Forwarding the entry_point parameter ensures correct event matching. Good consistency with v06.

Also applies to: 68-68, 80-80, 92-92


101-117: Log matching and boundary checks
The loop approach is parallel to v06 usage. It’s a clear way to assign each user operation logs slice.


213-216: Special factory address check
Ignore the sentinel address "7702..." to treat it as no factory. This logic is straightforward, but confirm your use case.


220-220: Extracting user logs boundaries
This matches the v06 approach, ensuring that logs outside the relevant entry point or paymaster are exempt.

user-ops-indexer/user-ops-indexer-logic/src/indexer/base_indexer.rs (13)

75-77: Great addition for multi-entry point support.

Introducing entry_points and matches_entry_point in the trait cleanly accommodates multiple entry points without complicating downstream logic.


85-87: Enhanced parameter clarity.

Adding entry_point and bundle_logs parameters to parse_user_ops makes the function’s responsibilities and inputs explicit, thereby improving maintainability.


103-103: Consistent filtering for multiple addresses.

Using self.entry_points() in the filter reflects the multi-entry point design, ensuring all relevant addresses are included.


367-384: Safe slicing approach.

Slicing with [i + 1..] is valid in Rust, even when i is the last index (it yields an empty slice). No out-of-bounds risk here, so this looks fine.


386-410: Robust logic for retrieving calldatas.

Falling back to call traces when the transaction is indirect or holds multiple bundles is a good approach. Properly checks each trace, matching entry points and handler calldata.


412-418: Ensures log-calldata parity.

Exiting early if calldatas.len() doesn’t match vec_bundle_logs.len() avoids silent mismatches and data corruption.


438-438: Helpful new log statement.

Printing the number of parsed user ops offers quick insight into how many were processed. No further issues.


471-481: Effective fixture-loading in tests.

Relying on fixture files to load JSON responses is a robust approach for test data. Includes clear I/O handling and avoids cluttering test code with fixtures.


483-489: Mocking RPC responses.

mock_rpc_with_responses provides a flexible structure to simulate various scenarios, enhancing test reliability without real network calls.


494-495: Integration with fixture-based client.

Creating the client via mock_rpc_with_responses("handle_tx_v06_ok") ensures each test is strictly defined by the loaded fixture, simplifying debugging.


505-507: Configuring entry points for v06.

Explicitly passing the entry points in the IndexerV06 construction is consistent with the multi-entry point architecture.


562-576: Coverage with debug and trace modes.

Testing both TraceClient::Debug and TraceClient::Trace helps confirm consistent behavior across different node trace frontends.


634-648: Proper v07 usage.

Creating and verifying the v07 indexer with separate entry point arrays confirms that the combined logic (v07 plus any v08 placeholders) doesn’t regress.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feat New feature
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant