cosmos-sdk/docs/spec/auth
Alexander Bezobchuk 7bc837aa06 Merge PR #3555: Reintroduce Fees OR Semantics 2019-02-07 18:14:54 -08:00
..
README.md Merge Pull Request #3241: Add Fee & Gas Spec 2019-01-24 08:38:27 -08:00
gas_fees.md Merge PR #3555: Reintroduce Fees OR Semantics 2019-02-07 18:14:54 -08:00
handlers.md x/auth module spec / code reconciliation (#2964) 2018-12-05 16:48:08 -08:00
keepers.md x/auth module spec / code reconciliation (#2964) 2018-12-05 16:48:08 -08:00
state.md x/auth module spec / code reconciliation (#2964) 2018-12-05 16:48:08 -08:00
types.md x/auth module spec / code reconciliation (#2964) 2018-12-05 16:48:08 -08:00
vesting.md Merge PR #3352: Reenable simulation tests 2019-01-24 22:01:32 +01:00

README.md

Auth module specification

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. State
    1. Accounts
      1. Account Interface
      2. Base Account
      3. Vesting Account
  2. Types
    1. StdFee
    2. StdSignature
    3. StdTx
    4. StdSignDoc
  3. Keepers
    1. AccountKeeper
  4. Handlers
    1. Ante Handler
  5. Gas & Fees