cosmos-sdk/x
dependabot[bot] 320171461f
build(deps): Bump github.com/hashicorp/go-hclog from 1.4.0 to 1.5.0 in /store (#15498)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Julien Robert <julien@rbrt.fr>
2023-03-21 17:31:24 +00:00
..
auth docs: improve proto vesting docs about time attributes (#15474) 2023-03-20 16:40:19 +00:00
authz refactor: remove unnecessary modules methods (#15436) 2023-03-17 11:47:08 +01:00
bank refactor(bank): update InputOutputCoins arguments (#15477) 2023-03-20 17:32:39 +00:00
circuit build(deps): Bump github.com/hashicorp/go-hclog from 1.4.0 to 1.5.0 in /store (#15498) 2023-03-21 17:31:24 +00:00
consensus feat: Validate Msg proto annotations (#13793) 2023-03-20 16:27:36 +01:00
crisis refactor: remove unnecessary modules methods (#15436) 2023-03-17 11:47:08 +01:00
distribution feat: add delegator to withdraw address (#15462) 2023-03-20 14:43:07 +00:00
evidence build(deps): Bump github.com/hashicorp/go-hclog from 1.4.0 to 1.5.0 in /store (#15498) 2023-03-21 17:31:24 +00:00
feegrant build(deps): Bump github.com/hashicorp/go-hclog from 1.4.0 to 1.5.0 in /store (#15498) 2023-03-21 17:31:24 +00:00
genutil refactor: remove capability module (#15344) 2023-03-10 12:59:10 +00:00
gov refactor(bank): update InputOutputCoins arguments (#15477) 2023-03-20 17:32:39 +00:00
group feat: Validate Msg proto annotations (#13793) 2023-03-20 16:27:36 +01:00
mint refactor: remove unnecessary modules methods (#15436) 2023-03-17 11:47:08 +01:00
nft build(deps): Bump github.com/hashicorp/go-hclog from 1.4.0 to 1.5.0 in /store (#15498) 2023-03-21 17:31:24 +00:00
params refactor: remove unnecessary modules methods (#15436) 2023-03-17 11:47:08 +01:00
simulation refactor: remove bytes/HexBytes (#15211) 2023-03-01 18:27:23 +00:00
slashing refactor: remove unnecessary modules methods (#15436) 2023-03-17 11:47:08 +01:00
staking docs: replace Tendermint references in docs with CometBFT (#15339) 2023-03-14 20:41:35 +01:00
tx docs: improve proto vesting docs about time attributes (#15474) 2023-03-20 16:40:19 +00:00
upgrade build(deps): Bump github.com/hashicorp/go-hclog from 1.4.0 to 1.5.0 in /store (#15498) 2023-03-21 17:31:24 +00:00
README.md docs: replace Tendermint references in docs with CometBFT (#15339) 2023-03-14 20:41:35 +01:00

sidebar_position slug
0 /modules

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.
  • 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.
  • Circuit - Circuit breaker module for pausing messages.
  • Genutil - Genesis utilities for the Cosmos SDK.

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.