9ae17669d6
* Implement TxHeightTimeoutDecorator * Update error message * rename type * set height timeout * update tests * update *SignDoc) * rename * remove dup * fix build * cli updates * rest updates * cl++ * Update x/auth/ante/basic.go Co-authored-by: colin axnér <25233464+colin-axner@users.noreply.github.com> * Update x/auth/ante/basic.go Co-authored-by: colin axnér <25233464+colin-axner@users.noreply.github.com> * Update x/auth/ante/basic.go Co-authored-by: colin axnér <25233464+colin-axner@users.noreply.github.com> * Update x/auth/ante/basic.go Co-authored-by: Federico Kunze <31522760+fedekunze@users.noreply.github.com> * rename * rename * remove TimeoutHeight from SignDoc * updates * fix tests * update IBC cmd flags * use omitempty * update godoc * add test case to TestStdSignBytes Co-authored-by: colin axnér <25233464+colin-axner@users.noreply.github.com> Co-authored-by: Federico Kunze <31522760+fedekunze@users.noreply.github.com> Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> |
||
---|---|---|
.. | ||
01_concepts.md | ||
02_state.md | ||
03_messages.md | ||
03_types.md | ||
04_keepers.md | ||
05_vesting.md | ||
07_params.md | ||
README.md |
README.md
auth
Abstract
This document specifies the auth module of the Cosmos SDK.
The auth module is responsible for specifying the base transaction and account types for an application, since the SDK itself is agnostic to these particulars. It contains the ante handler, where all basic transaction validity checks (signatures, nonces, auxiliary fields) are performed, and exposes the account keeper, which allows other modules to read, write, and modify accounts.
This module will be used in the Cosmos Hub.