cosmos-sdk/x/auth/spec
Ryan Christoffersen cb66c99eab
chore: add markdownlint to lint commands (#9353)
* add markdownlint config

* update make lint commands

* update markdownlint config

* run make lint-fix

* fix empty link

* resuse docker container

* run lint-fix

* do not echo commands

Co-authored-by: ryanchrypto <12519942+ryanchrypto@users.noreply.github.com>
2021-05-27 15:31:04 +00:00
..
01_concepts.md x/{auth, bank, distr} docs basic cleanup (#8268) 2021-01-11 12:11:22 +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 Update x/auth AnteHandler Spec (#9298) 2021-05-12 09:10:11 +00:00
04_keepers.md Update doc for IterateAccounts x/auth keeper meethod (#9285) 2021-05-11 21:13:31 +00:00
05_vesting.md chore: add markdownlint to lint commands (#9353) 2021-05-27 15:31:04 +00:00
07_params.md x/{auth, bank, distr} docs basic cleanup (#8268) 2021-01-11 12:11:22 +00:00
README.md docs: Revert SPEC-SPEC and update x/{auth,bank,evidence,slashing} (#7407) 2020-10-16 12:42:48 +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 will be used in the Cosmos Hub.

Contents

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