cosmos-sdk/x/auth/spec
Julien Robert 9d8beff497
docs: update docs for Check/DeliverTx middlewares (#11918)
Co-authored-by: Aleksandr Bezobchuk <alexanderbez@users.noreply.github.com>
2022-05-10 16:25:53 +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_middlewares.md docs: update docs for Check/DeliverTx middlewares (#11918) 2022-05-10 16:25:53 +02: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: Code blocks in SDK docs are broken (#11189) 2022-02-14 23:39:35 +01: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: update docs for Check/DeliverTx middlewares (#11918) 2022-05-10 16:25:53 +02: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. Middlewares
  4. Keepers
  5. Vesting
  6. Parameters
  7. Client