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

Deprecate stargate v1 and amarok #1002

Merged
merged 6 commits into from
Feb 26, 2025
Merged

Conversation

0xDEnYO
Copy link
Contributor

@0xDEnYO 0xDEnYO commented Feb 18, 2025

Which Jira task belongs to this PR?

https://lifi.atlassian.net/browse/LF-12447

Why did I implement it this way?

Checklist before requesting a review

Checklist for reviewer (DO NOT DEPLOY and contracts BEFORE CHECKING THIS!!!)

  • I have checked that any arbitrary calls to external contracts are validated and or restricted
  • I have checked that any privileged calls (i.e. storage modifications) are validated and or restricted
  • I have ensured that any new contracts have had AT A MINIMUM 1 preliminary audit conducted on by <company/auditor>

Copy link
Contributor

coderabbitai bot commented Feb 18, 2025

Walkthrough

This pull request introduces a new JSON configuration file for the Stargate protocol, detailing sections for endpoint mappings, chain IDs, contract addresses for composers, and routers. It also updates the import paths in two demo scripts to reflect a change in the directory structure for configuration files. Additionally, the legacy sections have been removed from an existing Stargate configuration file, streamlining the overall JSON format.

Changes

File(s) Change Summary
archive/config/stargateV1.json Added a new JSON configuration file for the Stargate protocol with sections: endpointIds, chains, composers, and routers.
archive/scripts/demoScripts/demoDeBridge.ts, archive/scripts/demoScripts/demoSynapseBridge.ts Updated relative import paths to correctly reference configuration and deployment JSON files.
config/stargate.json Removed the legacy sections (chains, composers, and routers) and restructured the file to focus on current configuration sections.

Possibly related PRs

  • deployed stargate to gnosis #993: This PR involves updates to the Stargate configuration, particularly the removal of legacy sections, which is closely related to the new JSON configuration structure introduced in the current changes.

Suggested labels

AuditRequired

Suggested reviewers

  • ezynda3
  • maxklenk

Warning

Review ran into problems

🔥 Problems

Errors were encountered while retrieving linked issues.

Errors (1)
  • JIRA integration encountered authorization issues. Please disconnect and reconnect the integration in the CodeRabbit UI.

📜 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 dc25a85 and a448ccc.

📒 Files selected for processing (1)
  • config/stargate.json (1 hunks)
⏰ Context from checks skipped due to timeout of 90000ms (2)
  • GitHub Check: run-unit-tests
  • GitHub Check: generate-tag
🔇 Additional comments (4)
config/stargate.json (4)

1-50: Legacy Fields Removal and JSON Structure Simplification
The legacy sections (chains, composers, and routers) have been successfully removed from this configuration, aligning with the project's deprecation of stargate v1 and amarok. This streamlined structure better reflects the intended JSON schema by focusing on the current endpointV2 configuration.


51-79: Validation of the Token Messaging Section
The tokenMessaging section now clearly defines network-specific configurations and includes an updated documentation link. Please ensure that any other parts of the system or demos referencing this section are updated accordingly.


80-149: Repositioned EndpointIds Array and Integrity Check
The endpointIds array has been repositioned to the end of the file, which enhances clarity by separating current endpoint mappings from deprecated configurations. Verify that each chain ID to endpoint ID mapping is correct and consistently aligned with the new configuration in archive/config/stargateV1.json. Additionally, double-check that no remnants of the legacy identifiers remain that could cause confusion.


150-151: File Closure and JSON Validity
The file ends cleanly with no extra trailing commas or syntax issues. It should parse correctly with standard JSON parsers.


Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

❤️ Share
🪧 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 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.

@lifi-action-bot lifi-action-bot marked this pull request as draft February 18, 2025 02:55
@lifi-action-bot lifi-action-bot changed the title Deprecate stargate v1 and amarok Deprecate stargate v1 and amarok [CalldataVerificationFacet v1.3.0] Feb 18, 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

🧹 Nitpick comments (2)
archive/config/stargateV1.json (2)

134-185: Thorough "composers" Address Mapping
This section assigns contract addresses to various network identifiers. The inclusion of keys like "abstract" (set to the zero address) should be double-checked to ensure it is an intentional placeholder rather than an oversight. Additionally, consider whether using checksummed addresses (EIP-55) might improve readability and prevent potential errors from incorrectly formatted addresses.


186-229: Comprehensive "routers" Address Configuration
The "routers" section is clearly laid out, associating each network with its designated router address. While the structure is clear, it would be beneficial to verify that all provided addresses conform to checksum standards if applicable to your ecosystem. Also, double-check that the addresses reflect the most recent deployments.

📜 Review details

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

📥 Commits

Reviewing files that changed from the base of the PR and between 3976145 and dc25a85.

📒 Files selected for processing (1)
  • archive/config/stargateV1.json (1 hunks)
⏰ Context from checks skipped due to timeout of 90000ms (1)
  • GitHub Check: generate-tag
🔇 Additional comments (2)
archive/config/stargateV1.json (2)

1-71: Clear and Organized "endpointIds" Configuration
The "endpointIds" section provides a straightforward mapping between blockchain chainIds and their corresponding endpointIds. Each mapping is clearly formatted, and the numeric values appear consistent.


72-133: Consistent and Well-Mapped "chains" Section
The "chains" array maps each chainId to a corresponding lzChainId for LayerZero. Ensure that the inclusion (or omission) of certain chain IDs—such as the presence of chainId 5000 here but not in "endpointIds"—is intentional and documented in your design rationale.

@0xDEnYO 0xDEnYO marked this pull request as ready for review February 18, 2025 03:01
@lifi-action-bot
Copy link
Collaborator

lifi-action-bot commented Feb 18, 2025

Test Coverage Report

Line Coverage: 78.75% (2079 / 2640 lines)
Function Coverage: 83.68% ( 359 / 429 functions)
Branch Coverage: 45.24% ( 233 / 515 branches)
Test coverage (78.75%) is above min threshold (76%). Check passed.

@0xDEnYO
Copy link
Contributor Author

0xDEnYO commented Feb 18, 2025

This PR has a cross-dependency with PR(#999) (both are updating the CalldataVerificationFacet).
We will create a separate PR (#1003) that combines the changes in CalldataVerificationFacet and ensures the audit. Once this is merged, we will merge this PR here.

ezynda3
ezynda3 previously approved these changes Feb 18, 2025
mirooon
mirooon previously approved these changes Feb 19, 2025
ezynda3
ezynda3 previously approved these changes Feb 19, 2025
@0xDEnYO 0xDEnYO dismissed stale reviews from ezynda3 and mirooon via a448ccc February 26, 2025 07:55
@lifi-action-bot lifi-action-bot changed the title Deprecate stargate v1 and amarok [CalldataVerificationFacet v1.3.0] Deprecate stargate v1 and amarok Feb 26, 2025
@0xDEnYO 0xDEnYO merged commit 46e2315 into main Feb 26, 2025
23 checks passed
@0xDEnYO 0xDEnYO deleted the deprecate-stargateV1-and-Amarok branch February 26, 2025 08:11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants