cosmos-sdk/x
Daniel Burckhardt b8270fc9ba
feat: add (re)delegation getters (#11596)
### Description

This PR adds general helper functions to the `x/staking` module that are used in the Evmos `x/vesting` module and originated from Agoric's custom staking module implementation https://github.com/agoric-labs/cosmos-sdk/blob/4085-true-vesting/x/staking/keeper/delegation.go.

- `GetDelegatorUnbonding`  
- `GetDelegatorBonded`
- `IterateDelegatorUnbondingDelegations`
- `IterateDelegatorDelegations`
- `IterateDelegatorRedelegations`
2022-04-12 14:41:08 +00:00
..
auth fix: --dry-run not working when using tx command (#11558) 2022-04-11 15:50:54 +00:00
authz chore: (x/authz) add test case for same grantee granter (#11509) 2022-04-05 06:34:11 +00:00
bank fix: --dry-run not working when using tx command (#11558) 2022-04-11 15:50:54 +00:00
capability docs: Improve markdownlint configuration (#11104) 2022-02-10 12:07:01 +00:00
crisis chore: remove migrations 0.42 and below (#11556) 2022-04-07 13:04:03 +00:00
distribution clean up unused methods in distribution expected keepers (#11588) 2022-04-09 17:02:23 +02:00
epoching docs: Improve markdownlint configuration (#11104) 2022-02-10 12:07:01 +00:00
evidence fix: genesis typo in error message (#11576) 2022-04-08 11:33:31 +02:00
feegrant fix: --dry-run not working when using tx command (#11558) 2022-04-11 15:50:54 +00:00
genutil fix: genesis typo in error message (#11576) 2022-04-08 11:33:31 +02:00
gov chore: x/gov v1 Completeness audit (#11567) 2022-04-08 10:03:43 +00:00
group docs: update groups spec & cli instructions (#11516) 2022-04-08 13:01:43 +00:00
mint chore: remove migrations 0.42 and below (#11556) 2022-04-07 13:04:03 +00:00
nft docs: add nft spec and event (#11526) 2022-04-08 12:47:35 +02:00
params chore: remove migrations 0.42 and below (#11556) 2022-04-07 13:04:03 +00:00
simulation chore: bump TM to v0.35.0 release candidate (#10210) 2021-11-16 11:24:38 -08:00
slashing chore: remove migrations 0.42 and below (#11556) 2022-04-07 13:04:03 +00:00
staking feat: add (re)delegation getters (#11596) 2022-04-12 14:41:08 +00:00
upgrade chore: x/gov v1 Completeness audit (#11567) 2022-04-08 10:03:43 +00:00
README.md docs: Improve markdownlint configuration (#11104) 2022-02-10 12:07:01 +00:00

List of Modules

Here are some production-grade modules that can be used in Cosmos SDK applications, along with their respective documentation:

  • Auth - Authentication of accounts and transactions for Cosmos SDK applications.
  • Authz - Authorization for accounts to perform actions on behalf of other accounts.
  • Bank - Token transfer functionalities.
  • Capability - Object capability implementation.
  • Crisis - Halting the blockchain under certain circumstances (e.g. if an invariant is broken).
  • Distribution - Fee distribution, and staking token provision distribution.
  • Epoching - Allows modules to queue messages for execution at a certain block height.
  • Evidence - Evidence handling for double signing, misbehaviour, etc.
  • Feegrant - Grant fee allowances for executing transactions.
  • Governance - On-chain proposals and voting.
  • Mint - Creation of new units of staking token.
  • Params - Globally available parameter store.
  • Slashing - Validator punishment mechanisms.
  • Staking - Proof-of-Stake layer for public blockchains.
  • Upgrade - Software upgrades handling and coordination.

To learn more about the process of building modules, visit the building modules reference documentation.

IBC

The IBC module for the SDK has moved to its own repository.