cosmos-sdk/x
Joel Smith 1b530599b8
feat: update to Cosmos SDK v0.47.12 (#160)
* Proof of Authority for tendermint consensus

allows validators to have 0 delegated tokens

* Make staking keeper know about wormhole keeper

* Implement IsConsensusGuardian

* Add SECURITY and README updates

* Revert "Add SECURITY and README updates"

This reverts commit 6171558c35.

* Update README

* Fix simapp compilation

* Check self-delegation against provided minimum

* staking/keeper: remove stale comment

this case is now handled properly

* staking: Fix potential division-by-zero

`v.DelegatorShares` can be 0 so don't allow division in that case.

* Refactor Staking Initialization

* Set Wormhole Keeper on Module

* Print to stderr

* Handle Errs on Genesis Init

* Handle Err

* Update Exp Module

* Update gogoproto

* Update Prometheus Version

---------

Co-authored-by: Csongor Kiss <kiss.csongor.kiss@gmail.com>
Co-authored-by: Csongor Kiss <ckiss@jumptrading.com>
Co-authored-by: Chirantan Ekbote <cekbote@jumptrading.com>
2024-11-25 14:54:03 -06:00
..
auth Merge pull request from GHSA-4j93-fm92-rp4m 2024-02-19 17:56:39 +01:00
authz refactor(x/authz,x/feegrant): provide updated keeper in depinject (backport #20590) (#20595) 2024-06-07 15:24:38 +00:00
bank fix(x/bank): miss keypair of SendEnabled to restore legacy param set before migration (#18107) 2023-10-16 05:09:49 +02:00
capability refactor: migrate to CometBFT in v0.47 (#15060) 2023-02-20 16:36:58 +01:00
consensus chore(x/consensus): check for nil params (backport #18041) (#18069) 2023-10-11 21:38:11 +02:00
crisis chore: make params module optional in app wiring (backport #16269) (#16271) 2023-05-24 14:19:37 +02:00
distribution chore: make params module optional in app wiring (backport #16269) (#16271) 2023-05-24 14:19:37 +02:00
evidence feat: update the slashing and evidence modules to work with ICS (backport #15908) (#15947) 2023-04-25 22:28:15 +02:00
feegrant refactor(x/authz,x/feegrant): provide updated keeper in depinject (backport #20590) (#20595) 2024-06-07 15:24:38 +00:00
genutil fix: resolve migration map in MigrateHandler (#17301) (backport #17302) (#17303) 2023-08-07 11:08:40 +00:00
gov feat: update to Cosmos SDK v0.47.12 (#160) 2024-11-25 14:54:03 -06:00
group docs(x/group): fix submit-proposal help json example (backport #17546) (#17551) 2023-08-25 16:25:32 +00:00
mint chore: make params module optional in app wiring (backport #16269) (#16271) 2023-05-24 14:19:37 +02:00
nft refactor: migrate to CometBFT in v0.47 (#15060) 2023-02-20 16:36:58 +01:00
params refactor: migrate to CometBFT in v0.47 (#15060) 2023-02-20 16:36:58 +01:00
simulation fix: use timestamp for sim log file name (backport #20108) (#20112) 2024-04-21 21:16:19 +02:00
slashing Merge pull request from GHSA-86h5-xcpx-cfqc 2024-02-27 17:28:05 +01:00
staking feat: update to Cosmos SDK v0.47.12 (#160) 2024-11-25 14:54:03 -06:00
upgrade chore(x/upgrade): Use ValidateBasic for Plan in ReadUpgradeInfoFromDisk (backport #18210) (#18230) 2023-10-24 10:36:12 +00:00
README.md docs: small update for routes change (backport #17881) (#17887) 2023-09-26 15:42:47 +00:00

README.md

sidebar_position
0

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.
  • 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.
  • NFT - NFT module implemented based on ADR43.
  • Consensus - Consensus module for modifying CometBFT's ABCI consensus params.

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.

CosmWasm

The CosmWasm module enables smart contracts, and has its own repository and documentation site.