updates from feedback

This commit is contained in:
Ethan Buchman 2018-06-18 12:14:08 -07:00
parent 45692154fd
commit 84f0c6d609
1 changed files with 9 additions and 3 deletions

View File

@ -9,14 +9,19 @@ NOTE: This documentation is a work-in-progress!
- [Application Architecture](overview/apps.md) - Layers in the application architecture - [Application Architecture](overview/apps.md) - Layers in the application architecture
- [Install](install.md) - Install the library and example applications - [Install](install.md) - Install the library and example applications
- [Core](core) - [Core](core)
- [BaseApp](core/baseapp.md) - BaseApp is the base layer of the application
- [The MultiStore](core/multistore.md) - MultiStore is a rich Merkle database
- [Messages](core/messages.md) - Messages contain the content of a transaction - [Messages](core/messages.md) - Messages contain the content of a transaction
- [Handlers](core/handlers.md) - Handlers are the workhorse of the app! - [Handlers](core/handlers.md) - Handlers are the workhorse of the app!
- [BaseApp](core/baseapp.md) - BaseApp is the base layer of the application
- [The MultiStore](core/multistore.md) - MultiStore is a rich Merkle database
- [Amino](core/amino.md) - Amino is the primary serialization library used in the SDK - [Amino](core/amino.md) - Amino is the primary serialization library used in the SDK
- [Accounts](core/accounts.md) - Accounts are the prototypical object kept in the store - [Accounts](core/accounts.md) - Accounts are the prototypical object kept in the store
- [Transactions](core/transactions.md) - Transactions wrap messages and provide authentication - [Transactions](core/transactions.md) - Transactions wrap messages and provide authentication
- [Keepers](core/keepers.md) - Keepers are the interfaces between handlers - [Keepers](core/keepers.md) - Keepers are the interfaces between handlers
- [Clients](core/clients.md) - Hook up your app to standard CLI and REST
interfaces for clients to use!
- [Advanced](core/advanced.md) - Trigger logic on a timer, use custom
serialization formats, advanced Merkle proofs, and more!
- [Modules](modules) - [Modules](modules)
- [Bank](modules/bank.md) - [Bank](modules/bank.md)
- [Staking](modules/staking.md) - [Staking](modules/staking.md)
@ -24,8 +29,9 @@ NOTE: This documentation is a work-in-progress!
- [Provisions](modules/provisions.md) - [Provisions](modules/provisions.md)
- [Governance](modules/governance.md) - [Governance](modules/governance.md)
- [IBC](modules/ibc.md) - [IBC](modules/ibc.md)
- [Clients](clients) - [Clients](clients)
- [Running a Node](clients/node.md) - [Running a Node](clients/node.md) - Run a full node!
- [Key Management](clients/keys.md) - Managing user keys - [Key Management](clients/keys.md) - Managing user keys
- [CLI](clients/cli.md) - Queries and transactions via command line - [CLI](clients/cli.md) - Queries and transactions via command line
- [Light Client Daemon](clients/lcd.md) - Queries and transactions via REST - [Light Client Daemon](clients/lcd.md) - Queries and transactions via REST