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

chore(crosschain): remove cosmos bridgecall msg #730

Merged
merged 1 commit into from
Oct 11, 2024

Conversation

zakir-code
Copy link
Contributor

@zakir-code zakir-code commented Oct 11, 2024

Summary by CodeRabbit

  • New Features

    • Updated cross-chain messaging structure by removing the MsgBridgeCall functionality.
  • Bug Fixes

    • Adjusted test assertions for interface registrations.
  • Refactor

    • Simplified testing and handling of bridge calls by removing related methods and tests.
  • Chores

    • Cleaned up the interface registry by removing deprecated entries.

Copy link

coderabbitai bot commented Oct 11, 2024

Walkthrough

The pull request involves significant modifications to the handling of bridge calls within the codebase. This includes the removal of specific RPC methods, message types, and associated test functions related to MsgBridgeCall. Additionally, adjustments were made to tests and JSON configurations reflecting these removals. The expected count of implemented interfaces in a test was also updated. Overall, the changes indicate a shift in the architecture and functionality concerning cross-chain messaging and bridge calls.

Changes

File Change Summary
app/encoding_test.go Modified TestRegisterInterfaces to change expected interface count from 300 to 298.
app/interface_registry.json Removed entries /fx.gravity.crosschain.v1.MsgBridgeCall and /fx.gravity.crosschain.v1.MsgBridgeCallResponse from TypeURLMap and Msgs.
proto/fx/gravity/crosschain/v1/tx.proto Removed BridgeCall RPC method and MsgBridgeCallResponse message; alternatives suggested for deprecated RPCs.
tests/crosschain_suite.go Removed methods BridgeCall and SendBridgeCallAndResponse from CrosschainTestSuite.
tests/crosschain_test.go Removed BridgeCallTest method from IntegrationTest struct.
tests/integration_test.go Updated TestRun method to remove invocation of BridgeCallTest.
x/crosschain/client/cli/tx.go Removed CmdBridgeCall function and associated CLI command.
x/crosschain/keeper/bridge_call_out.go Removed methods SetBridgeCallFromMsg, DeleteBridgeCallFromMsg, and HasBridgeCallFromMsg.
x/crosschain/keeper/bridge_call_refund.go Modified HandleOutgoingBridgeCallRefund and DeleteOutgoingBridgeCallRecord methods.
x/crosschain/keeper/msg_server.go Removed BridgeCall method; marked several methods as deprecated in favor of a unified Confirm method.
x/crosschain/keeper/msg_server_router.go Removed BridgeCall method from msgServer struct.
x/crosschain/keeper/msg_server_test.go Removed TestMsgBridgeCall function.
x/crosschain/types/codec.go Removed implementation registration for MsgBridgeCall from RegisterInterfaces and RegisterLegacyAminoCodec.
x/crosschain/types/msgs.go Removed MsgBridgeCall struct and associated methods.
x/crosschain/types/msgs_test.go Removed TestMsgBridgeCall_ValidateBasic function.

Possibly related PRs

🐇 In the meadow, where changes bloom,
The bridge calls fade, making room.
With tests refined and logic clear,
A simpler path now draws us near.
Hops of progress, swift and bright,
In code we trust, our future's light! 🌼


📜 Recent review details

Configuration used: CodeRabbit UI
Review profile: CHILL

📥 Commits

Files that changed from the base of the PR and between bcb4d64 and 6ce24a3.

⛔ Files ignored due to path filters (1)
  • x/crosschain/types/tx.pb.go is excluded by !**/*.pb.go
📒 Files selected for processing (16)
  • app/encoding_test.go (1 hunks)
  • app/interface_registry.json (0 hunks)
  • proto/fx/gravity/crosschain/v1/tx.proto (0 hunks)
  • tests/crosschain_suite.go (0 hunks)
  • tests/crosschain_test.go (0 hunks)
  • tests/integration_test.go (0 hunks)
  • x/crosschain/client/cli/tx.go (0 hunks)
  • x/crosschain/keeper/bridge_call_out.go (0 hunks)
  • x/crosschain/keeper/bridge_call_out_v1_test.go (2 hunks)
  • x/crosschain/keeper/bridge_call_refund.go (0 hunks)
  • x/crosschain/keeper/msg_server.go (0 hunks)
  • x/crosschain/keeper/msg_server_router.go (0 hunks)
  • x/crosschain/keeper/msg_server_test.go (0 hunks)
  • x/crosschain/types/codec.go (0 hunks)
  • x/crosschain/types/msgs.go (0 hunks)
  • x/crosschain/types/msgs_test.go (0 hunks)
💤 Files with no reviewable changes (14)
  • app/interface_registry.json
  • proto/fx/gravity/crosschain/v1/tx.proto
  • tests/crosschain_suite.go
  • tests/crosschain_test.go
  • tests/integration_test.go
  • x/crosschain/client/cli/tx.go
  • x/crosschain/keeper/bridge_call_out.go
  • x/crosschain/keeper/bridge_call_refund.go
  • x/crosschain/keeper/msg_server.go
  • x/crosschain/keeper/msg_server_router.go
  • x/crosschain/keeper/msg_server_test.go
  • x/crosschain/types/codec.go
  • x/crosschain/types/msgs.go
  • x/crosschain/types/msgs_test.go
✅ Files skipped from review due to trivial changes (1)
  • x/crosschain/keeper/bridge_call_out_v1_test.go
🧰 Additional context used
🔇 Additional comments (1)
app/encoding_test.go (1)

46-46: Verify the reason for the interface count reduction.

The change from 300 to 298 implemented interfaces aligns with the PR objective of removing cosmos bridge call messages. However, to ensure this change is intentional and correct:

  1. Please confirm that this reduction is indeed due to the removal of the bridge call message types.
  2. Consider adding a comment explaining the significance of this count, e.g.:
    // 298 represents the total number of implemented interfaces after removal of cosmos bridge call messages
    assert.Equal(t, 298, count2)

This will help with future maintenance and understanding of the test.

To verify the removed interfaces, run the following script:

If the script returns no results, it confirms that the MsgBridgeCall implementations have been removed as expected.

✅ Verification successful

Interface count reduction verified.

The decrease from 300 to 298 implemented interfaces correctly reflects the removal of MsgBridgeCall interface implementations as intended by the PR. All relevant implementations have been successfully removed.

🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Check for removed interface implementations related to bridge calls

# Test: Search for removed MsgBridgeCall implementations
rg --type go -i 'MsgBridgeCall.*implements' -g '!app/encoding_test.go'

Length of output: 72


Script:

#!/bin/bash
# Description: Verify the removal of MsgBridgeCall implementations using ast-grep and rg

# Using ast-grep to find implementations of MsgBridgeCall
ast-grep --lang go --pattern $'interface $_ { ... MsgBridgeCall ... }' .

# Using rg to search for any remaining mentions of MsgBridgeCall
rg -i 'MsgBridgeCall' --type go

Length of output: 18886


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 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.

@fx0x55 fx0x55 merged commit 1f0b77f into main Oct 11, 2024
11 checks passed
@fx0x55 fx0x55 deleted the nulnut/remove-sdk-bridgecall branch October 11, 2024 09:14
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants