cosmos-sdk/x
Amaury c1b567f44c
Refactor store keys for variable-length addresses (#8363)
* Change account store key in x/bank

* Fix pagination test

* Fix merge master

* Fix staking keys.go

* Use bech32 in val state change map

* Fix sortNoLongerBonded

* Use length-prefix function

* Use length prefix function

* Fix test accountStore

* Fix ExamplePaginate

* Fix staking keys

* Use shorter balances prefix

* Do slashing keys

* Fix gov keys

* Fix x/gov tests

* Fix x/distrib

* Address reviews

* add change log entry

* Add changelog

* Fix failing tests

* Fix sim tests

* fix after-export sim

* Fix lint

* Address review

* Fix x/authz

* Fix global config in test

* Update x/staking/keeper/val_state_change.go

Co-authored-by: Robert Zaremba <robert@zaremba.ch>

* Address comments

* Fix comments

* Address review

* Fix authz test

* Update comment

* Rename to LengthPrefixedAddressStoreKey

* Use variable

* Rename function

* Fix test build

* chore: update rosetta CI (#8453)

* Rename again

* Rename yet again

* Update feegrant keys

* Add function to create prefix

Co-authored-by: Robert Zaremba <robert@zaremba.ch>
Co-authored-by: Frojdi Dymylja <33157909+fdymylja@users.noreply.github.com>
Co-authored-by: Aaron Craelius <aaron@regen.network>
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2021-02-01 13:17:44 +00:00
..
auth Add fee grant module (#8061) 2021-01-29 19:54:51 +00:00
authz Refactor store keys for variable-length addresses (#8363) 2021-02-01 13:17:44 +00:00
bank Refactor store keys for variable-length addresses (#8363) 2021-02-01 13:17:44 +00:00
capability Update gogo proto deps with v1.3.2 security fixes (#8350) 2021-01-15 19:45:34 +00:00
crisis Update gogo proto deps with v1.3.2 security fixes (#8350) 2021-01-15 19:45:34 +00:00
distribution Refactor store keys for variable-length addresses (#8363) 2021-02-01 13:17:44 +00:00
evidence fix bech32 prefix in evidence (#8461) 2021-01-29 20:05:24 +00:00
feegrant Refactor store keys for variable-length addresses (#8363) 2021-02-01 13:17:44 +00:00
genaccounts CLI `migrate` command follow-up: decode & re-encode (#7464) 2020-10-09 19:09:43 +00:00
genutil Rosetta API implementation (#7695) 2021-01-21 09:33:02 +00:00
gov Refactor store keys for variable-length addresses (#8363) 2021-02-01 13:17:44 +00:00
ibc Add packet_connection attribute to packet lifecycle methods (#8458) 2021-02-01 14:01:53 +01:00
mint Add fee grant module (#8061) 2021-01-29 19:54:51 +00:00
params fix proto generation (#8361) 2021-01-18 12:41:34 -03:00
simulation simulation: close opened files and check for error while creating files (#8217) 2020-12-22 13:46:42 +00:00
slashing Refactor store keys for variable-length addresses (#8363) 2021-02-01 13:17:44 +00:00
staking Refactor store keys for variable-length addresses (#8363) 2021-02-01 13:17:44 +00:00
upgrade Rosetta API implementation (#7695) 2021-01-21 09:33:02 +00:00
README.md docs: improve IBC guide (#6472) 2020-07-07 06:19:36 -04:00

README.md

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 application.
  • 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.
  • Governance - On-chain proposals and voting.
  • IBC - IBC protocol for transport, authentication adn ordering.
  • IBC Transfer - Cross-chain fungible token transfer implementation through IBC.
  • 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.