Skip to content

Commit

Permalink
chore: x/incentive cmds (#203)
Browse files Browse the repository at this point in the history
Adds support for invoking `NewWithdrawRewardCmd` and
`NewSetWithdrawAddressCmd`

[Closes](#13)
  • Loading branch information
Lazar955 authored Dec 6, 2024
1 parent a0e8f8a commit cdbd96c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
### Bug Fixes

* [#199](https://github.com/babylonlabs-io/finality-provider/pull/199) EOTS signing for multiple finality providers
* [#203](https://github.com/babylonlabs-io/finality-provider/pull/203) fpd cli: Withdraw rewards and set withdraw addr

## v0.13.0

Expand Down
4 changes: 4 additions & 0 deletions finality-provider/cmd/fpd/daemon/tx.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ import (
"github.com/spf13/cobra"

btcstakingcli "github.com/babylonlabs-io/babylon/x/btcstaking/client/cli"
incentivecli "github.com/babylonlabs-io/babylon/x/incentive/client/cli"

btcstakingtypes "github.com/babylonlabs-io/babylon/x/btcstaking/types"
sdk "github.com/cosmos/cosmos-sdk/types"
authclient "github.com/cosmos/cosmos-sdk/x/auth/client"
Expand All @@ -28,6 +30,8 @@ func CommandTxs() *cobra.Command {
authcli.GetSignCommand(),
btcstakingcli.NewCreateFinalityProviderCmd(),
NewValidateSignedFinalityProviderCmd(),
incentivecli.NewWithdrawRewardCmd(),
incentivecli.NewSetWithdrawAddressCmd(),
)

return cmd
Expand Down

0 comments on commit cdbd96c

Please sign in to comment.