Skip to content

Releases: allora-network/allora-chain

v0.2.1-dev

31 May 11:31
a22b76b
Compare
Choose a tag to compare
v0.2.1-dev Pre-release
Pre-release
simplify rewards by adding rewardable topic set (#318)

Add reward-ready queue, just like we have for churnable topics.

Add topic when reputer payload committed, pop during EmitRewards, reset
when rewards paid out.

Topics still need to be churnable (active, epochLength % blockHeight ==
0, top N by weight) in order to be rewardable, rewardable is just
tracked more cleanly.

No more "x-ready" just "xable":
   * "churn-ready" -> "churnable"
   * "reward-ready" -> "rewardable"

Added query to return weight and "effective revenue" from `GetTopic`
query.

Added tie breakers to sorting functions that were missing it.

Added validation on submitted losses to check if losses were submitted
for duplicate workers. We now just take 1 per unique worker per type of
loss.

[Associated
ticket](https://linear.app/upshot/issue/ORA-1509/add-reward-ready-queue).

---------

Co-authored-by: Diego Campo <[email protected]>
Co-authored-by: Tyler <[email protected]>

v0.2.0-dev

30 May 18:48
559e5f2
Compare
Choose a tag to compare
v0.2.0-dev Pre-release
Pre-release
Diego/ora 1507 reputer calls depend on being churn ready renamed (#315)

* Add param TopicFeeRevenueDecayRate , set to 0.025
* Apply to ResetTopicRevenue 
* The decay will be applied now to all topics. Because the feeRevenue of
the non-topN is added to the total revenue (via
`sumRevenueOfBottomTopics` ) , this can be considered added to the mix
and so it's ok to apply decay. This reduces the variability of topics
going in/out of the topN, leading to more stable topics.

WIP passes unit tests, but untested on integration/stress.

---------

Co-authored-by: Tyler <[email protected]>
Co-authored-by: Kenny <[email protected]>

v0.1.0-dev.a53b6d4

11 May 23:55
a53b6d4
Compare
Choose a tag to compare
v0.1.0-dev.a53b6d4 Pre-release
Pre-release
v0.1.0-dev.a53b6d4

v0.0.10

02 Apr 00:59
448633d
Compare
Choose a tag to compare
lessen v1 inflation (#103)

* lessen extreme inflation
* upgrade version

v0.0.9

01 Apr 08:07
abc68a1
Compare
Choose a tag to compare
v0.0.9 Pre-release
Pre-release
changes default power reduction to 10^18 (#99)

Issue with validator power reduction causing an over flow, with 10^18,
we halted.

After researching, looks like it is an issue with the validator power
reduction calculations, causing an overflow in CometBFT.


Discussion
https://github.com/cosmos/cosmos-sdk/issues/8357


Sifchain, BNB Greenfield, Ethermint all 10^18


https://github.com/search?q=NewIntFromBigInt%28new%28big.Int%29.Exp%28big.NewInt%2810%29%2C+big.NewInt%2818%29%2C+nil%29%29&type=code

Signed-off-by: Derek Anderson <[email protected]>

v0.0.8

20 Mar 16:52
59dee79
Compare
Choose a tag to compare
v0.0.8 Pre-release
Pre-release

What's Changed

New Contributors

Full Changelog: v0.0.7...v0.0.8

v0.0.7

22 Mar 19:24
0d0e35c
Compare
Choose a tag to compare
pointer-loop fixes