PundiAI / fx-core

https://functionx.gitbook.io
Apache License 2.0
21 stars 14 forks source link

chore(crosschain): remove cosmos bridgecall msg #730

Closed zakir-code closed 1 week ago

zakir-code commented 1 week ago

Summary by CodeRabbit

coderabbitai[bot] commented 1 week ago

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 bcb4d64ef5bd56489647acf92b5783ba53b5fee5 and 6ce24a32c5a827344acfe2615a3064736467f0c3.
⛔ 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.: ```go // 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: ```shell #!/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: ```shell #!/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 - [X](https://twitter.com/intent/tweet?text=I%20just%20used%20%40coderabbitai%20for%20my%20code%20review%2C%20and%20it%27s%20fantastic%21%20It%27s%20free%20for%20OSS%20and%20offers%20a%20free%20trial%20for%20the%20proprietary%20code.%20Check%20it%20out%3A&url=https%3A//coderabbit.ai) - [Mastodon](https://mastodon.social/share?text=I%20just%20used%20%40coderabbitai%20for%20my%20code%20review%2C%20and%20it%27s%20fantastic%21%20It%27s%20free%20for%20OSS%20and%20offers%20a%20free%20trial%20for%20the%20proprietary%20code.%20Check%20it%20out%3A%20https%3A%2F%2Fcoderabbit.ai) - [Reddit](https://www.reddit.com/submit?title=Great%20tool%20for%20code%20review%20-%20CodeRabbit&text=I%20just%20used%20CodeRabbit%20for%20my%20code%20review%2C%20and%20it%27s%20fantastic%21%20It%27s%20free%20for%20OSS%20and%20offers%20a%20free%20trial%20for%20proprietary%20code.%20Check%20it%20out%3A%20https%3A//coderabbit.ai) - [LinkedIn](https://www.linkedin.com/sharing/share-offsite/?url=https%3A%2F%2Fcoderabbit.ai&mini=true&title=Great%20tool%20for%20code%20review%20-%20CodeRabbit&summary=I%20just%20used%20CodeRabbit%20for%20my%20code%20review%2C%20and%20it%27s%20fantastic%21%20It%27s%20free%20for%20OSS%20and%20offers%20a%20free%20trial%20for%20proprietary%20code)
🪧 Tips ### Chat There are 3 ways to chat with [CodeRabbit](https://coderabbit.ai): - Review comments: Directly reply to a review comment made by CodeRabbit. Example: - `I pushed a fix in commit , 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](https://docs.coderabbit.ai/guides/configure-coderabbit) 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](https://coderabbit.ai/docs) for detailed information on how to use CodeRabbit. - Join our [Discord Community](http://discord.gg/coderabbit) to get help, request features, and share feedback. - Follow us on [X/Twitter](https://twitter.com/coderabbitai) for updates and announcements.