Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

feat(zetatools): cli command to fetch inbound ballot from inbound hash and move to zetatools #3368

Merged
merged 25 commits into from
Jan 24, 2025
Merged
Show file tree
Hide file tree
Changes from 17 commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,17 @@

## unreleased

### Features

* [3368](https://github.com/zeta-chain/node/pull/3368) - cli command to fetch inbound ballot from inbound hash added to zetatools.

### Refactor

* [3332](https://github.com/zeta-chain/node/pull/3332) - implement orchestrator V2. Move BTC observer-signer to V2
* [3360](https://github.com/zeta-chain/node/pull/3360) - update protocol contract imports using consolidated path
* [3349](https://github.com/zeta-chain/node/pull/3349) - implement new bitcoin rpc in zetaclient with improved performance and observability


## v25.0.0

## Unreleased
Expand Down
210 changes: 0 additions & 210 deletions cmd/zetaclientd/inbound.go

This file was deleted.

11 changes: 0 additions & 11 deletions cmd/zetaclientd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,13 +61,6 @@ var (
Short: "Show relayer address",
RunE: RelayerShowAddress,
}

InboundCmd = &cobra.Command{Use: "inbound", Short: "Inbound transactions"}
InboundGetBallotCmd = &cobra.Command{
Use: "get-ballot [inboundHash] [chainID]",
Short: "Get the ballot status for the tx hash",
RunE: InboundGetBallot,
}
)

// globalOptions defines the global options for all commands.
Expand All @@ -89,7 +82,6 @@ func init() {
setupGlobalOptions()
setupInitializeConfigOptions()
setupRelayerOptions()
setupInboundOptions()

// Define commands
RootCmd.AddCommand(VersionCmd)
Expand All @@ -103,9 +95,6 @@ func init() {
RootCmd.AddCommand(RelayerCmd)
RelayerCmd.AddCommand(RelayerImportKeyCmd)
RelayerCmd.AddCommand(RelayerShowAddressCmd)

RootCmd.AddCommand(InboundCmd)
InboundCmd.AddCommand(InboundGetBallotCmd)
}

func main() {
Expand Down
Loading
Loading