cosmos-sdk/docs/spec/auth
frog power 4000 78a21353da Rename stake/ to staking/ (#3280) 2019-01-11 12:08:01 -08:00
..
README.md x/auth module spec / code reconciliation (#2964) 2018-12-05 16:48:08 -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 Rename stake/ to staking/ (#3280) 2019-01-11 12:08:01 -08: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