Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
cfc80d2
feat(x/bank): autocli tx support
atheeshp Sep 25, 2023
f52a562
remove comment
atheeshp Sep 25, 2023
893615f
changes
atheeshp Sep 25, 2023
04c3c4a
refactor
atheeshp Sep 27, 2023
581f868
refactor
atheeshp Sep 28, 2023
cd76355
Merge branch 'main' of github.com:cosmos/cosmos-sdk into ap/bank-autocli
atheeshp Sep 28, 2023
4fefd8c
fix tests
atheeshp Sep 28, 2023
4743c2e
fix autocli
atheeshp Oct 3, 2023
562bc90
Merge branch 'main' of github.com:cosmos/cosmos-sdk into ap/bank-autocli
atheeshp Oct 3, 2023
a58fcbe
fix lint
atheeshp Oct 3, 2023
a527e05
feat(client/v2): signing
julienrbrt Oct 4, 2023
77f5068
fix tests
julienrbrt Oct 4, 2023
d0c4b43
add tests for from flag
julienrbrt Oct 4, 2023
0af601d
Merge branch 'main' of github.com:cosmos/cosmos-sdk into ap/bank-autocli
atheeshp Oct 5, 2023
f192c24
Merge branch 'julien/autocli-from' of github.com:cosmos/cosmos-sdk in…
atheeshp Oct 5, 2023
fc7be9d
fix tests
atheeshp Oct 5, 2023
4664eca
fix cmds
atheeshp Oct 5, 2023
0876b6d
review changes
atheeshp Oct 5, 2023
27fa12d
delete x/nft tx_test file
atheeshp Oct 5, 2023
6593fac
review changes
atheeshp Oct 5, 2023
c916ef3
review changes
atheeshp Oct 5, 2023
95503d5
Merge branch 'main' of github.com:cosmos/cosmos-sdk into ap/bank-autocli
atheeshp Oct 5, 2023
56879ff
review changes
atheeshp Oct 5, 2023
9a5ae5e
Merge branch 'main' of github.com:cosmos/cosmos-sdk into ap/bank-autocli
atheeshp Oct 5, 2023
c359f04
review changes
atheeshp Oct 5, 2023
1d23f70
review changes
atheeshp Oct 5, 2023
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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ Ref: https://keepachangelog.com/en/1.0.0/

### Features

* (testutil) [#17868](https://github.com/cosmos/cosmos-sdk/pull/17868) Added helper method `SubmitTestTx` in testutil to broadcast test txns to test e2e tests.
* (x/protocolpool) [#17657](https://github.com/cosmos/cosmos-sdk/pull/17657) Create a new `x/protocolpool` module that is responsible for handling community pool funds. This module is split out into a new module from x/distribution.
* (baseapp) [#16581](https://github.com/cosmos/cosmos-sdk/pull/16581) Implement Optimistic Execution as an experimental feature (not enabled by default).
* (client/keys) [#17639](https://github.com/cosmos/cosmos-sdk/pull/17639) Allows using and saving public keys encoded as base64
Expand All @@ -64,6 +65,7 @@ Ref: https://keepachangelog.com/en/1.0.0/

### API Breaking Changes

* (testutil) [#17868](https://github.com/cosmos/cosmos-sdk/pull/17868) `MsgSendExec` has been removed because of AutoCLI migration.
* (x/distribution) [#17657](https://github.com/cosmos/cosmos-sdk/pull/17657) The `FundCommunityPool` and `DistributeFromFeePool` keeper methods are now removed from x/distribution.
* (x/distribution) [#17657](https://github.com/cosmos/cosmos-sdk/pull/17657) The distribution module keeper now takes a new argument `PoolKeeper` in addition.
* (app) [#17838](https://github.com/cosmos/cosmos-sdk/pull/17838) Params module was removed from simapp and all imports of the params module removed throughout the repo.
Expand Down
Loading