cosmos-sdk/docs/spec/auth
Alessio Treglia a32d5a46d7
Generalize auth/types.StdSignature (#4507)
New Signature interface available in the top level types package.
auth.StdSignature implements such interface. User defined auth
module can now define their own custom signature types.

Work carried out in the context of the following issues:
- #4488
- #4487
2019-06-07 14:21:35 +01:00
..
01_concepts.md Merge PR #3884: steak to stake 2019-03-14 10:32:46 -04:00
02_state.md Merge PR #3683: spec-spec update, spec file reorg, TOC updates 2019-02-20 13:21:57 -05:00
03_messages.md Merge PR #3683: spec-spec update, spec file reorg, TOC updates 2019-02-20 13:21:57 -05:00
03_types.md Generalize auth/types.StdSignature (#4507) 2019-06-07 14:21:35 +01:00
04_keepers.md Merge PR #3683: spec-spec update, spec file reorg, TOC updates 2019-02-20 13:21:57 -05:00
05_vesting.md Merge PR #3717: Allow the undelegation of more coins than were delegated; More validity checks. 2019-02-27 22:09:26 +01:00
07_params.md Merge PR #4404: Update Spec to include params 2019-05-24 12:18:07 -04:00
README.md Merge PR #4404: Update Spec to include params 2019-05-24 12:18:07 -04:00

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. Concepts
  2. State
  3. Messages
  4. Types
  5. Keepers
  6. Vesting
  7. Parameters