cosmos-sdk/x/auth/spec
Alexander Bezobchuk 9ae17669d6
Tx Height Timeout (#6089)
* Implement TxHeightTimeoutDecorator

* Update error message

* rename type

* set height timeout

* update tests

* update *SignDoc)

* rename

* remove dup

* fix build

* cli updates

* rest updates

* cl++

* Update x/auth/ante/basic.go

Co-authored-by: colin axnér <25233464+colin-axner@users.noreply.github.com>

* Update x/auth/ante/basic.go

Co-authored-by: colin axnér <25233464+colin-axner@users.noreply.github.com>

* Update x/auth/ante/basic.go

Co-authored-by: colin axnér <25233464+colin-axner@users.noreply.github.com>

* Update x/auth/ante/basic.go

Co-authored-by: Federico Kunze <31522760+fedekunze@users.noreply.github.com>

* rename

* rename

* remove TimeoutHeight from SignDoc

* updates

* fix tests

* update IBC cmd flags

* use omitempty

* update godoc

* add test case to TestStdSignBytes

Co-authored-by: colin axnér <25233464+colin-axner@users.noreply.github.com>
Co-authored-by: Federico Kunze <31522760+fedekunze@users.noreply.github.com>
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2020-08-07 23:32:22 +00:00
..
01_concepts.md Docs: hide frontmatter, bugfixes (#5413) 2019-12-17 08:44:44 -03:00
02_state.md Docs: hide frontmatter, bugfixes (#5413) 2019-12-17 08:44:44 -03:00
03_messages.md Docs: hide frontmatter, bugfixes (#5413) 2019-12-17 08:44:44 -03:00
03_types.md Tx Height Timeout (#6089) 2020-08-07 23:32:22 +00:00
04_keepers.md Docs: hide frontmatter, bugfixes (#5413) 2019-12-17 08:44:44 -03:00
05_vesting.md Merge PR #5572: ADR 004 Implementation 2020-01-30 16:31:16 -05:00
07_params.md Docs: hide frontmatter, bugfixes (#5413) 2019-12-17 08:44:44 -03:00
README.md Docs: hide frontmatter, bugfixes (#5413) 2019-12-17 08:44:44 -03: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. Messages
  4. Types
  5. Keepers
  6. Vesting
  7. Parameters