Denali Marsh
3fc2a63556
Refactor to DelegatorClaim and implement new MsgClaimDelegatorReward ( #948 )
...
* update claim attribute type to MultiRewardIndexes
* update param attribute type to MultiRewardPeriods
* keeper: update params to match types
* keeper: update delegator core keeper methods
* keeper: update InitializeHardDelegatorReward
* keeper: update SynchronizeHardDelegatorRewards
* remove reward factor in favor of reward indexes
* update querier
* fix test: delegator init test
* fix test: delegator sync test
* implement delegator reward accumulation
* fix test: delegator general tests
* add legact types, update v0_11 -> v0_14 migration
* remove duplicate import form v0_15 migration
* implement v0_15incentive migration
* test data and migration test
* add multiple reward denoms to init/sync tests
* update delegator test with multiple reward coins
* clean up simulation sync
* types: introduce DelegatorClaim, refactor HardClaim
* add core DelegateClaim store methods
* refactor delegator reward init, accumulation, sync
* update hooks
* update params and genesis logic
* update abci
* update types tests
* update querier types/keeper for compile
* update supply rewards tests
* update borrow reward tests
* update delegator reward tests
* update handler/genesis test for compile
* add new msg type
* implement delegator claim payouts
* submission + handling of new msg
* implement new querier types/keeper logic
* add new queries to cli/rest
* update migration
* register new msgs/types on codec
* remove delegator syncing from hard sync method
2021-07-07 18:50:14 +02:00
Ruaridh
c7962e45c0
Swaps accumulate global rewards ( #947 )
...
* add get set methods for swap reward indexes
* add get set methods for swap accrual time
* tidy up location of multi periods
* add swap reward periods to params
* add initial legacy types for incentive
* minor refactor of migration code
* add incentive migration for swap params
* minor incentive test refactors
* add math methods to RewardIndexes
* add keeper method to increment global indexes
* add swap keeper to incentive keeper
* indicate if pool shares were found or not
* add accumulator to compute new rewards each block
* accumulate swap rewards globally
* remove unecessary keeper method
* expand doc comments on accumulator methods
* test precision not lost in accumulation
* minor fixes from merge
* rename storeGlobalDelegatorFactor to match others
* fix migration from merge
* fix bug in app setup
* fix accumulation bug when starting with no state
* rename swap files to match others
* add swap accumulation times to genesis
* remove old migration refactor
* minor updates to spec
* add high level description of how rewards work
2021-07-07 14:23:06 +01:00
Denali Marsh
bc33b94822
Update delegator rewards to multi-reward index ( #945 )
...
* update claim attribute type to MultiRewardIndexes
* update param attribute type to MultiRewardPeriods
* keeper: update params to match types
* keeper: update delegator core keeper methods
* keeper: update InitializeHardDelegatorReward
* keeper: update SynchronizeHardDelegatorRewards
* remove reward factor in favor of reward indexes
* update querier
* fix test: delegator init test
* fix test: delegator sync test
* implement delegator reward accumulation
* fix test: delegator general tests
* add legact types, update v0_11 -> v0_14 migration
* remove duplicate import form v0_15 migration
* implement v0_15incentive migration
* test data and migration test
* add multiple reward denoms to init/sync tests
* update delegator test with multiple reward coins
* clean up simulation sync
2021-07-06 00:01:25 +02:00
Denali Marsh
cae7503f7b
Token holder governance ( #917 )
...
* Committee types (#899 )
* committee types
* refactor to committee interface
* include tokencommitee stringer method
* add members to BaseCommittee
* address revisions
* update querier
* update querier
* fix compilation errors, tests, etc.
* Update MsgVote with vote type (#900 )
* add vote to msg
* update querier/rest
* update example cli vote msg
* remove incorrect comments
* address revisions
* update handler, stub keeper method
* add vote type to vote struct
* Committee module keeper logic for token holder governance (#902 )
* fix keeper/test compilation errors
* fix keeper/test compilation errors pt 2
* add setters to committee interface
* fix sims compilation errors
* fix incentive tests compilation errors
* update types, expected keepers
* core keeper logic
* don't allow bond denom
* implement vote tallying
* query proposal polling status
* update module keepers in app.go
* register committee interface
* fix failing incentive test
* commitee types tests
* refactor GetProposalResult by committee types
* update invariants
* implement most proposal keeper tests
* add nulls to custom enums
* remove abstain vote type
* add test for close proposal
* remove outdated TODOs
* update ProcessProposals
* switch on committee type directly
* reintroduce Abstain votes and update vote tallying
* don't allow divide by 0 panics
* delete unused setters on committee interface
* clean up tally methods return values for querier
* update enum validation to catch negative ints
* reintroduce setters for sims compilation
* address revisions
* remove commented out test
* implement ProcessProposals test
* additional revisions
* Committee migrations (#909 )
* add committee v14 legacy types
* update migration imports for compile
* addRegisterCodec() to committee v14 legacy types
* migrate committee genesis state from v14 to v15
* set stability committee permissions properly
* fix committee allowed params
* migration test, kava-7 sample data
* add concrete types to committees (#911 )
* revisions: migrate + tests
* register msgs on legacy codec
* Prepare Committee module for migrations (#906 )
* remove invariants
* edits
* fix abci test
* fix keeper querier tests
* add committee interface registration
* use codec.Codec
* don't allow null vote types
* don't allow null tally option
* minor spelling fixes
* update example cli proposal
* fix cli tally query
* enable vote abstain from cli
* include vote options in cli help text
* call CloseProposal from handler
* custom enum marshaling
* committee: fix failing tests (#921 )
* fix failing tests
* fix: spelling
Co-authored-by: rhuairahrighairigh <ruaridh.odonnell@gmail.com>
Co-authored-by: Ruaridh <rhuairahrighairidh@users.noreply.github.com>
Co-authored-by: Kevin Davis <karzak@users.noreply.github.com>
2021-06-07 18:08:03 +02:00