## Description Closes: #9404 --- ### Author Checklist *All items are required. Please add a note to the item if the item is not applicable and please add links to any relevant follow up issues.* I have... - [x] included the correct [type prefix](https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.json) in the PR title - [ ] added `!` to the type prefix if API or client breaking change - [x] targeted the correct branch (see [PR Targeting](https://github.com/cosmos/cosmos-sdk/blob/master/CONTRIBUTING.md#pr-targeting)) - [x] provided a link to the relevant issue or specification - [ ] followed the guidelines for [building modules](https://github.com/cosmos/cosmos-sdk/blob/master/docs/building-modules) - [ ] included the necessary unit and integration [tests](https://github.com/cosmos/cosmos-sdk/blob/master/CONTRIBUTING.md#testing) - [ ] added a changelog entry to `CHANGELOG.md` - [ ] included comments for [documenting Go code](https://blog.golang.org/godoc) - [ ] updated the relevant documentation or specification - [x] reviewed "Files changed" and left comments if necessary - [x] confirmed all CI checks have passed ### Reviewers Checklist *All items are required. Please add a note if the item is not applicable and please add your handle next to the items reviewed if you only reviewed selected items.* I have... - [ ] confirmed the correct [type prefix](https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.json) in the PR title - [ ] confirmed `!` in the type prefix if API or client breaking change - [ ] confirmed all author checklist items have been addressed - [ ] reviewed state machine logic - [ ] reviewed API design and naming - [ ] reviewed documentation is accurate - [ ] reviewed tests and test coverage - [ ] manually tested (if applicable)
47 lines
1.6 KiB
Markdown
47 lines
1.6 KiB
Markdown
<!--
|
|
order: 0
|
|
title: "Auth Overview"
|
|
parent:
|
|
title: "auth"
|
|
-->
|
|
|
|
# `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 is used in the Cosmos Hub.
|
|
|
|
## Contents
|
|
|
|
1. **[Concepts](01_concepts.md)**
|
|
* [Gas & Fees](01_concepts.md#gas-&-fees)
|
|
2. **[State](02_state.md)**
|
|
* [Accounts](02_state.md#accounts)
|
|
3. **[AnteHandlers](03_antehandlers.md)**
|
|
* [Handlers](03_antehandlers.md#handlers)
|
|
4. **[Keepers](04_keepers.md)**
|
|
* [Account Keeper](04_keepers.md#account-keeper)
|
|
5. **[Vesting](05_vesting.md)**
|
|
* [Intro and Requirements](05_vesting.md#intro-and-requirements)
|
|
* [Vesting Account Types](05_vesting.md#vesting-account-types)
|
|
* [Vesting Account Specification](05_vesting.md#vesting-account-specification)
|
|
* [Keepers & Handlers](05_vesting.md#keepers-&-handlers)
|
|
* [Genesis Initialization](05_vesting.md#genesis-initialization)
|
|
* [Examples](05_vesting.md#examples)
|
|
* [Glossary](05_vesting.md#glossary)
|
|
6. **[Parameters](06_params.md)**
|
|
7. **[Client](07_client.md)**
|
|
* **[Auth](07_client.md#auth)**
|
|
* [CLI](07_client.md#cli)
|
|
* [gRPC](07_client.md#grpc)
|
|
* [REST](07_client.md#rest)
|
|
* **[Vesting](07_client.md#vesting)**
|
|
* [CLI](07_client.md#vesting#cli)
|