Feature/bridgewise status cli - #836
Open
A-one-tech wants to merge 2 commits into
Open
Conversation
… congestion monitoring integration
…nd to retrieve cross-chain status updates
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
#Closes
#727
Pull Request Documentation
PR Title: feat(cli): add bridgewise status command and SDK cross-chain status checker
PR Description:
markdown
Description
Implements the
bridgewise statusCLI command and an SDKStatusCheckermodule to query destination chains and display real-time cross-chain transaction lifecycle status (Pending,Committed,Relayed,Failed) across source and destination chains.Changes Made
libs/sdk/src/status-checker.ts):StatusCheckerclass to query transaction lifecycle milestones (Source Lock->Relayer Verification->Destination Mint/Release).Ethereum,Stellar,Polygon,Arbitrum,Optimism,Avalanche,BSC,Base,Solana).libs/sdk/src/__tests__/status-checker.spec.ts.apps/cli/src/commands/status.command.ts&status.ts):StatusCommandto process positional transaction hash arguments (bridgewise status <txHash>) and--source-chain/-soption flags.--format jsonsupport.apps/cli/src/commands/__tests__/status.command.spec.tsto test flag processing, lifecycle queries, and error states.apps/cli/src/commands/__tests__/run-all-tests.tsto include status command assertions in the test suite runner.Acceptance Criteria Met
bridgewise status 0x...correctly queries and displays real-time cross-chain transaction lifecycle status.--source-chainflag.Saved to
PR_STATUS_COMMAND.md
in the repository root.