cosmos-sdk/docs/spec/auth
Alexander Bezobchuk f2e87ad81f Merge PR #3308: Genesis Vesting Accounts & Simulation
* Update vesting spec and impl time fields and constructors
* Update genesis to support vesting accounts
* More spec and godoc updates
* Update genesis section in vesting spec
* Fix bank unit tests
* Add test cases to ToAccount in genesis
* Update RegisterCodec to include vesting interface and types
* Fix GetVestedCoins bug where block time is past vesting end time
* Add vesting accounts to simulation
* Update vesting genesis logic to panic on invalid accounts
* Change randomness of vesting accounts in simulation
2019-01-17 17:15:13 +01: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 Merge PR #3308: Genesis Vesting Accounts & Simulation 2019-01-17 17:15:13 +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