You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There should be an entry for every single version.
6
+
The same types of changes should be grouped.
7
+
Versions and sections should be linkable.
8
+
The latest version comes first.
9
+
The release date of each version is displayed.
10
+
Mention whether you follow Semantic Versioning.
11
+
12
+
Usage:
13
+
14
+
Change log entries are to be added to the Unreleased section under the
15
+
appropriate stanza (see below). Each entry should ideally include a tag and
16
+
the Github issue reference in the following format:
17
+
18
+
* (<tag>) \#<issue-number> message
19
+
20
+
The issue numbers will later be link-ified during the release process so you do
21
+
not have to worry about including a link manually, but you can if you wish.
22
+
23
+
Types of changes (Stanzas):
24
+
25
+
"Features" for new features.
26
+
"Improvements" for changes in existing functionality.
27
+
"Deprecated" for soon-to-be removed features.
28
+
"Bug Fixes" for any bug fixes.
29
+
"Client Breaking" for breaking Protobuf, gRPC and REST routes used by end-users.
30
+
"CLI Breaking" for breaking CLI commands.
31
+
"API Breaking" for breaking exported APIs used by developers building on SDK.
32
+
"State Machine Breaking" for any changes that result in a different AppState given same genesisState and txList.
33
+
Ref: https://keepachangelog.com/en/1.0.0/
34
+
-->
35
+
36
+
# Changelog
37
+
38
+
## [Unreleased]
39
+
40
+
### State Machine Breaking
41
+
42
+
*[\#436](https://github.com/tendermint/liquidity/pull/436) Validation `MsgSwapWithinBatch` and `OfferCoinFee` ceiling
43
+
* When calculating `OfferCoinFee`, the decimal points are rounded up.
44
+
* Fix reserveOfferCoinFee residual Issue due to decimal error
45
+
46
+
*[\#433](https://github.com/tendermint/liquidity/pull/433) (sdk) Bump SDK version to [v0.43.0](https://github.com/cosmos/cosmos-sdk/releases/tag/v0.43.0).
For an example of broadcasting transactions using REST API (via gRPC-gateway), see Cosmos SDK [Migrating to New REST Endpoints](https://github.com/cosmos/cosmos-sdk/blob/master/docs/migrations/rest.md#migrating-to-new-rest-endpoints). Testing requires that the API server is enabled in `$HOME/.liquidityapp/config/app.toml`.
181
186
182
187
```bash
183
-
curl --header "Content-Type: application/json" --request POST --data '{"tx_bytes":"Cp0BCpoBCigvdGVuZGVybWludC5saXF1aWRpdHkuTXNnU3dhcFdpdGhpbkJhdGNoEm4KLWNvc21vczE4cWM2ZGwwNDZ1a3V0MjN3NnF1dndmenBmeWhncDJmeHFkcXAwNhACGAEiEAoEdXVzZBIINTAwMDAwMDAqBXVhdG9tMg0KBHV1c2QSBTc1MDAwOhExOTAwMDAwMDAwMDAwMDAwMBJYClAKRgofL2Nvc21vcy5jcnlwdG8uc2VjcDI1NmsxLlB1YktleRIjCiEDsouFptHWGniIBzFrsE26PcfH950qjnf4RaEsd+g2fA0SBAoCCH8YAxIEEMCaDBpAOI3k8fay9TziZbl+eNCqmPEF7tWXua3ad0ldNR6XOgZjKRBP9sQSxCtaRFnqc6Avep9C4Rjt+CHDahRNpZ8u3A==","mode":1}' localhost:1317/cosmos/tx/v1beta1/txs
188
+
curl --header "Content-Type: application/json" --request POST --data '{"tx_bytes":"'"$tx_bytes"'","mode":1}' localhost:1317/cosmos/tx/v1beta1/txs
0 commit comments