Skip to content

Latest commit

 

History

History
168 lines (122 loc) · 9.46 KB

CHANGELOG.md

File metadata and controls

168 lines (122 loc) · 9.46 KB

Changelog

[Unreleased]

Improvements

[v1.5.0] - 2021-11-01

  • #218 Bump cosmos-sdk version to v0.44.2.
  • (modules/nft) #224 Remove the check of denomId in the query.
  • (modules/coinswap) #221 Refactor coinswap module grpc APIs.
  • (modules/coinswap) #219 Refactor coinswap module, the liquidity pool is named with lpt-{index}, and the index is incremented from 1.
  • (modules/nft) #212 Make the order of commands parameters consistent.
  • (modules/nft) #183 Enhance NFT module, make it compatible with ERC721 and restrict mint and update operations.
  • #180 Add simulation tests.
  • (modules/farm) #179 Add farm module.

v1.4.0 - 2021-03-26

Bug Fixes

  • (modules/coinswap) #161 Fix coinswap token validation.
  • (modules/htlc) #157 Fix htlc params validation.
  • (modules/htlc) #156 Fix validation when creating HTLT.
  • (modules/coinswap) #155 Fix min liquidity check in add liquidity.
  • (modules/coinswap)#153 Fix query not-existent reserve pool.
  • (modules/service) #152 Fix update service binding.

Improvements

  • #167 Bump cosmos-sdk version to v0.42.3.
  • (modules/htlc) #158 Improve htlc.
  • (modules/token)#154 Add reserved token prefix.
  • (modules/coinswap)#151 Replace prefix swap/ with swap.
  • (modules/htlc)#146 Refactor HTLC module to support HTLT.

v1.3.1 - 2021-02-09

Bug Fixes

  • (modules/service) #138 Modify price regex in the service pricing schema to adapt to the token denom.

Improvements

  • #136 Clean up the code and fix module specifications.

v1.3.0 - 2021-02-07

Bug Fixes

  • (modules/token) #129 Fix incorrect calculation for minting token.
  • (modules/service) #123 Fix the key path for owner service fees.
  • (modules/service) #120 Fix DisableServiceBinding event type.
  • #116 Adjust ante check logic.
  • (modules/token) #102 Return error if token baseFee is not a native token.
  • (modules/token) #100 Mint&Edit&Burn only accept symbol as denom.
  • (modules/token) #99 Fix incorrect calculation of deduction amount for burning token.

Improvements

  • #111 Bump cosmos-sdk version to v0.41.0.
  • (modules/service) #118 Remove super mode from service.
  • #115 Normalize key path
  • (modules/oracle) #109 Adjust oracle FeedName and ValueJsonPath validation.
  • (modules/token) #107 Use symbol to calculate the default amount of IssueTokenBaseFee.
  • (modules/service) #105 Add service tax account.

v1.2.1 - 2021-01-28

Bug Fixes

  • (modules/htlc) #79 Fix HTLC hash-lock length check.

Improvements

  • #83 Bump cosmos-sdk version to v0.40.1.
  • #83 Bump tendermint verion to v0.34.3.
  • (modules/service)#96 Change the event key response_service to respond_service.
  • #92 Normalize msg and genesis validation.
  • (modules/service)#86 Update service default params.
  • (modules/token)#85 Register denomMetadata to bank module.
  • (modules/nft)#78 File can be used as schema parameters of GetCmdIssueDenom.

v1.2.0 - 2021-01-22

Bug Fixes

  • (modules/htlc) #71 Empty owner is allowed in endpoint /ndt/collections/{denom-id}/supply.
  • (modules/service) #70 Fix minimum deposit calculation.
  • (modules/nft) #53 Automatically generate key if not specified.
  • (modules/service) #41 Fix update options in CmdUpdateServiceBinding.
  • (modules/token) #36 Fix REST API GET /token/params .
  • #33 Fix the type of CLI flags.
  • (modules/service) #32 Fix service response validate.
  • (modules/service) #30 Fix random and oracle processing service response.

Improvements

  • #66 Bump cosmos-sdk version to v0.40.0.
  • #66 Bump tendermint verion to v0.34.1.
  • (modules/coinswap)#68 Remove standard denom from params and replace prefix uni: with swap/
  • (modules/token)#67 Add token burn.
  • #64 Add preprocessing before exporting the app state.
  • #62 Add paginate to modules.
  • #39 Change bytes to string in proto.
  • (modules/service) #38 Replace msg_index by internal_index to generate request_context_id.
  • #37 Refactor gRPC gateway REST endpiont.
  • #22 Refactor viper.GetXXX() to cmd.Flags().GetXXX() in CLI.

v1.1.1 - 2020-10-20

Bug Fixes

  • (modules/coinswap) #27 Get liquidity reserve via total supply.
  • (modules/service) #26 Fix deduct service fees and optimized code.
  • (modules/coinswap) #25 Integrate htlc beginblock.
  • (modules/service) #18 Fix incorrect price in request and fix init request when insufficient banlances.

v1.1.0 - 2020-09-30

Features

  • Add modules token, nft, htlc, coinswap, service, oracle, random, record.