cosmos-sdk/x
dependabot[bot] 1cde7541b7
build(deps): Bump cosmossdk.io/log from 1.3.1 to 1.4.0 (#21209)
Signed-off-by: dependabot[bot] <support@github.com>
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>
2024-08-08 09:02:12 +02:00
..
auth fix(simulation): Fix all problems make test-sim-custom-genesis-fast for simulation test. (backport #17911) (#20909) 2024-07-11 08:28:37 +00:00
authz refactor(x/authz,x/feegrant): provide updated keeper in depinject (#20590) 2024-06-07 14:34:02 +02:00
bank docs: add docs on permissions (backport #20526) (#20527) 2024-06-03 12:57:33 +02:00
circuit build(deps): Bump cosmossdk.io/log from 1.3.1 to 1.4.0 (#21209) 2024-08-08 09:02:12 +02:00
consensus fix(x/consensus): harden consensus params proposal (#20381) 2024-05-28 10:25:56 +00:00
crisis feat: Conditionally emit metrics based on enablement (backport #19903) (#20017) 2024-04-12 12:13:28 +02:00
distribution feat: Conditionally emit metrics based on enablement (backport #19903) (#20017) 2024-04-12 12:13:28 +02:00
evidence build(deps): Bump cosmossdk.io/log from 1.3.1 to 1.4.0 (#21209) 2024-08-08 09:02:12 +02:00
feegrant build(deps): Bump cosmossdk.io/log from 1.3.1 to 1.4.0 (#21209) 2024-08-08 09:02:12 +02:00
genutil perf: parse chain-id from big genesis file could be slow (backport #18204) (#18267) 2023-10-26 12:46:39 +02:00
gov style: Fix gov query proposals examples syntax (backport #20353) (#20357) 2024-05-12 11:26:26 +02:00
group fix(simulation): Fix all problems make test-sim-custom-genesis-fast for simulation test. (backport #17911) (#20909) 2024-07-11 08:28:37 +00:00
mint feat: Conditionally emit metrics based on enablement (backport #19903) (#20017) 2024-04-12 12:13:28 +02:00
nft build(deps): Bump cosmossdk.io/log from 1.3.1 to 1.4.0 (#21209) 2024-08-08 09:02:12 +02:00
params refactor: precise compiler assertions and cleanup module.go (backport #17718) (#17724) 2023-09-13 19:08:56 +00:00
simulation fix(simulation): Fix all problems make test-sim-custom-genesis-fast for simulation test. (backport #17911) (#20909) 2024-07-11 08:28:37 +00:00
slashing feat: Conditionally emit metrics based on enablement (backport #19903) (#20017) 2024-04-12 12:13:28 +02:00
staking feat: Conditionally emit metrics based on enablement (backport #19903) (#20017) 2024-04-12 12:13:28 +02:00
tx chore: bring in v0.13.x x/tx in release/v0.50.x (#21158) 2024-08-02 13:23:53 +02:00
upgrade build(deps): Bump cosmossdk.io/log from 1.3.1 to 1.4.0 (#21209) 2024-08-08 09:02:12 +02:00
README.md docs: small update for routes change (backport #17881) (#17886) 2023-09-26 17:42:42 +02:00

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.
  • 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 is maintained by the IBC Go team in its own repository.

Additionally, the capability module is from v0.50+ maintained by the IBC Go team in its own repository.

CosmWasm

The CosmWasm module enables smart contracts, learn more by going to their documentation site, or visit the repository.

EVM

Read more about writing smart contracts with solidity at the official evm documentation page.