Skip to content

Releases: mars-protocol/v1-fields-of-mars

v1.0.0

12 Mar 17:36
Compare
Choose a tag to compare

V1 mainnet release

v1.0.0-rc3

04 Mar 08:59
Compare
Choose a tag to compare
v1.0.0-rc3 Pre-release
Pre-release
  • At the end of update_position and liquidate function calls, purge the position from contract storage if it is empty.
  • Add new attributes {bond,debt}_amount to the position_changed event

v1.0.0-rc2

03 Mar 17:07
Compare
Choose a tag to compare
v1.0.0-rc2 Pre-release
Pre-release
  • health query now returns the amount of bonded LP tokens and debt tokens, in addition to their values
  • Added a new positions query which enumerates all positions

v1.0.0-rc1

23 Feb 15:41
Compare
Choose a tag to compare
v1.0.0-rc1 Pre-release
Pre-release

Release candidate

v0.6.1

08 Jan 06:52
Compare
Choose a tag to compare
v0.6.1 Pre-release
Pre-release
  • Remove logics related to tax. Terraform Labs has introduced a governance proposal to reduce tax cap to zero, and ultimately remove the tax mechanism completely. Once this proposal is executed, it will no longer be necessary to include tax-related logics in the contracts.
  • Add the snapshot functionality back. Snapshot was previously removed because the size of the contract's compiled bytecode exceeded the limit imposed by Terra blockchain. Now since we removed tax logics, we have enough space to add snapshots back.

v0.6.0

02 Jan 08:29
Compare
Choose a tag to compare
v0.6.0 Pre-release
Pre-release
  • Change of contract interface: replace increase_position/reduce_position/pay_debt with a single function update_position, which takes a list of user-defined Actions. This gives much more flexibilities to frontends.
  • Integration with Astro generator
  • Improvement to liquidation logic
  • Fix a vulnerability related to the calculation of LP token value
  • Split off asset adapters to a separate repository: cw-asset