cosmos-sdk/x/auth/spec
Mohammed Mohsin 94b62c2d67
docs: add auth module client docs (#10384)
* add auth module docs

* add link to auth docs
2021-10-16 07:41:02 +00:00
..
01_concepts.md docs: #10178 reference authz from auth (#10238) 2021-09-30 08:07:58 +00:00
02_state.md docs: Revert SPEC-SPEC and update x/{auth,bank,evidence,slashing} (#7407) 2020-10-16 12:42:48 +00:00
03_antehandlers.md docs: #10178 reference authz from auth (#10238) 2021-09-30 08:07:58 +00:00
04_keepers.md perf!: Add HasAccount to the AuthKeeper to save protobuf decoding time (#10022) 2021-08-31 05:07:31 +00:00
05_vesting.md docs: #10178 reference authz from auth (#10238) 2021-09-30 08:07:58 +00:00
06_params.md docs: fix module spec ordering (#9870) 2021-08-09 08:09:17 +00:00
07_client.md docs: add auth module client docs (#10384) 2021-10-16 07:41:02 +00:00
README.md docs: add auth module client docs (#10384) 2021-10-16 07:41:02 +00:00

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 is used in the Cosmos Hub.

Contents

  1. Concepts
  2. State
  3. AnteHandlers
  4. Keepers
  5. Vesting
  6. Parameters
  7. Client