Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

feat: Add tx encode and decode endpoints for amino txs #13882

Merged
merged 28 commits into from
Nov 24, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
d7b2ff8
add proto changes
likhita-809 Nov 15, 2022
1a0e190
make proto-gen
amaury1093 Nov 15, 2022
5e08a30
wip: adds tests
likhita-809 Nov 16, 2022
932c3b9
Merge branch 'main' of https://github.com/cosmos/cosmos-sdk into likh…
likhita-809 Nov 16, 2022
3a25154
wip: tests
likhita-809 Nov 16, 2022
6bee4a3
remove consoles
likhita-809 Nov 16, 2022
e839cec
wip: fix something
likhita-809 Nov 16, 2022
a296f7b
fix: encode amino tests
likhita-809 Nov 16, 2022
72b1237
add decode amino tests
likhita-809 Nov 16, 2022
54cac1a
Merge branch 'main' of https://github.com/cosmos/cosmos-sdk into likh…
likhita-809 Nov 16, 2022
63488e5
Merge branch 'main' of https://github.com/cosmos/cosmos-sdk into likh…
likhita-809 Nov 17, 2022
7c62ce2
wip: address requested changes
likhita-809 Nov 17, 2022
af265c0
Merge branch 'main' of https://github.com/cosmos/cosmos-sdk into likh…
likhita-809 Nov 17, 2022
b2b8f3d
Merge branch 'main' of https://github.com/cosmos/cosmos-sdk into likh…
likhita-809 Nov 17, 2022
c0bd77d
update proto inline docs
likhita-809 Nov 17, 2022
c723d66
Merge branch 'main' of https://github.com/cosmos/cosmos-sdk into likh…
likhita-809 Nov 18, 2022
001741d
Merge branch 'main' of https://github.com/cosmos/cosmos-sdk into likh…
likhita-809 Nov 18, 2022
07ed397
Merge branch 'main' into likhita/add-amino-endpoints
julienrbrt Nov 19, 2022
b63f7b7
Merge branch 'main' of https://github.com/cosmos/cosmos-sdk into likh…
likhita-809 Nov 21, 2022
64fc64c
Merge branch 'main' into likhita/add-amino-endpoints
likhita-809 Nov 21, 2022
d6a4ce0
Merge branch 'main' into likhita/add-amino-endpoints
likhita-809 Nov 23, 2022
ae24373
Merge branch 'main' into likhita/add-amino-endpoints
julienrbrt Nov 23, 2022
ab15552
Merge branch 'main' into likhita/add-amino-endpoints
atheeshp Nov 24, 2022
874eaf8
Merge branch 'main' of https://github.com/cosmos/cosmos-sdk into likh…
likhita-809 Nov 24, 2022
7f14f1e
Merge branch 'main' into likhita/add-amino-endpoints
likhita-809 Nov 24, 2022
fc70508
address review comments
likhita-809 Nov 24, 2022
411c5ec
Merge branch 'likhita/add-amino-endpoints' of https://github.com/cosm…
likhita-809 Nov 24, 2022
885ad11
Merge branch 'main' of https://github.com/cosmos/cosmos-sdk into likh…
likhita-809 Nov 24, 2022
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: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,13 @@ Ref: https://keepachangelog.com/en/1.0.0/

### Improvements

* [13882] (https://github.com/cosmos/cosmos-sdk/pull/13882) Add tx `encode` and `decode` endpoints to amino tx service.
> Note: These endpoints encodes and decodes only amino txs.
* (config) [#13894](https://github.com/cosmos/cosmos-sdk/pull/13894) Support state streaming configuration in `app.toml` template and default configuration.
* (x/nft) [#13836](https://github.com/cosmos/cosmos-sdk/pull/13836) Remove the validation for `classID` and `nftID` from the NFT module.
* [#13789](https://github.com/cosmos/cosmos-sdk/pull/13789) Add tx `encode` and `decode` endpoints to tx service.
> Note: This endpoint will only encode proto messages, Amino encoding is not supported.
> Note: These endpoints will only encode and decode proto messages, Amino encoding and decoding is not supported.
* [#13826](https://github.com/cosmos/cosmos-sdk/pull/13826) Support custom `GasConfig` configuration for applications.
* [#13619](https://github.com/cosmos/cosmos-sdk/pull/13619) Add new function called LogDeferred to report errors in defers. Use the function in x/bank files.
* (tools) [#13603](https://github.com/cosmos/cosmos-sdk/pull/13603) Rename cosmovisor package name to `cosmossdk.io/tools/cosmovisor`. The new tool directory contains Cosmos SDK tools.
* (deps) [#13397](https://github.com/cosmos/cosmos-sdk/pull/13397) Bump Go version minimum requirement to `1.19`.
Expand Down
Loading