app3 coin keeper

This commit is contained in:
Ethan Buchman
2018-06-27 12:45:01 -04:00
parent 0c5e3fdc74
commit 6bbe295d7f
2 changed files with 54 additions and 17 deletions
+2 -2
View File
@@ -19,7 +19,7 @@ NOTE: This documentation is a work-in-progress!
- [BaseApp](core/app1.md#baseapp) - BaseApp is the base layer of the application
- [App2 - Transactions](core/app2.md)
- [Amino](core/app2.md#amino) - Amino is the primary serialization library used in the SDK
- [Ante Handler](core/app2.md#ante-handler) - The AnteHandler
- [Ante Handler](core/app2.md#antehandler) - The AnteHandler
authenticates transactions
- [App3 - Modules: Auth and Bank](core/app3.md)
- [auth.Account](core/app3.md#accounts) - Accounts are the prototypical object kept in the store
@@ -27,7 +27,7 @@ NOTE: This documentation is a work-in-progress!
- [auth.StdTx](core/app3.md#stdtx) - `StdTx` is the default implementation of `Tx`
- [auth.StdSignBytes](core/app3.md#signing) - `StdTx` must be signed with certain
information
- [auth.AnteHandler](core/app3.md#ante-handler) - The `AnteHandler`
- [auth.AnteHandler](core/app3.md#antehandler) - The `AnteHandler`
verifies `StdTx`, manages accounts, and deducts fees
- [bank.CoinKeeper](core/app3.md#coin-keeper) - CoinKeeper allows for coin
transfers on an underlying AccountMapper