cosmos-sdk/x/auth/spec
Julien Robert 77a96d5fe1
docs: update sdk & tm version links in docs (#12976)
* docs: update sdk & tm version links in docs

* revert unrelated change
2022-08-20 08:42:13 +02:00
..
01_concepts.md style: lint go and markdown (#10060) 2021-10-30 13:43:04 +00:00
02_state.md docs: Improve markdownlint configuration (#11104) 2022-02-10 12:07:01 +00:00
03_antehandlers.md docs: updates outdated docs (#12014) 2022-05-31 08:59:38 -04: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: update sdk & tm version links in docs (#12976) 2022-08-20 08:42:13 +02:00
06_params.md docs: fix module spec ordering (#9870) 2021-08-09 08:09:17 +00:00
07_client.md style: lint go and markdown (#10060) 2021-10-30 13:43:04 +00:00
README.md docs: remove app wiring from module docs (#12393) 2022-06-30 14:11:25 +01:00

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 middlewares, 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