Skip to content

Releases: tendermint/fundraising

v0.4.1

28 Aug 12:31
fb24df1

Choose a tag to compare

What's Changed

Full Changelog: v0.4.0...v0.4.1

v0.4.0

05 Jul 00:49
a8675c6

Choose a tag to compare

chore: update buf version and files (#203)

* update buf version and files

* chore: add proto module name

* feat: add make targets to proto generate files using Buf

* chore: update Buf repository name

Co-authored-by: Danilo Pantani <danpantani@gmail.com>

---------

Co-authored-by: Pantani <Pantani>
Co-authored-by: jeronimoalbi <jeronimo.albi@gmail.com>

v0.3.1

26 Aug 08:02
bf26b82

Choose a tag to compare

Description

This release bumps Cosmos SDK version to 0.46.0.

What's Changed

New Contributors

Full Changelog: v0.3.0...v0.3.1

v0.3.0

02 May 11:35
7524ab7

Choose a tag to compare

This release introduces a few bug fixes and improvements. Notably, calculation logic for BatchAuction at the end of an auction has been improved significantly in terms of performance. And BaseAuction has some changes to only contain common methods for an auction. This results to remove AllowedBidders and RemainingSellingCoin fields. AllowedBidders is now stored in KVStore for better performance and flexibility and RemainingSellingCoin is now located in FixedPriceAuction. Moreover, in order to prevent from potential attack vectors, PlaceBidFee and global constants, such as MaxNumVestingSchedules and MaxExtendedRound are implemented. See below for a detailed information about all changes and updates.

What's Changed

New Contributors

Full Changelog: v0.2.0...v0.3.0

v0.2.0

07 Apr 12:31
421361d

Choose a tag to compare

This release introduces new auction type BatchAuction. It provides a sophisticated and dynamic way for allowed bidders to participate in an auction. Find more details about the batch auction in spec documentation.

What's Changed

New Contributors

Full Changelog: v0.1.1...v0.2.0

v0.1.1

21 Feb 08:20
b308a22

Choose a tag to compare

This release has some changes to the module's spec design. One of the main changes is to add AllowedBidders in Auction. All auctions are closed state when they are created. The module expects an external module to create an auction and the module delegates a control of ownership to an external module to add or update the auction's allowed bidders.

What's Changed

  • docs: update technical setup and api readme by @kogisin in #63
  • fix: using a custom account prefix makes default genesis invalid by @kogisin in #67
  • refactor: move getter/setter/iterator to store.go by @kogisin in #68
  • chore: fix document typo and rename package name in proto files by @kogisin in #70
  • refactor: keeper test suite by @kogisin in #71
  • feat: unified naming consistency throughout the codebase by @kogisin in #74
  • fix: panic due to negative coin amount when remaining is negative by @kogisin in #80
  • docs: minor edits for README by @barriebyron in #75
  • feat: add AllowedBidders and some functions for an external module to use by @kogisin in #76
  • docs: modified 01_concept.md to describe two auction types by @jeonghoyeo7 in #82
  • feat: add testing cli by @kogisin in #83

New Contributors

Full Changelog: v0.1.0...v0.1.1

v0.1.0

29 Dec 09:37
6c5f6bc

Choose a tag to compare

This release introduces MVP version for the fundraising module and it only includes FixedPriceAuction type. EnglishAuction type is in active development and it is planned to be included in the next version. To understand how the module works, it is recommended to check out the technical spec and docs.