PENDING
This commit is contained in:
parent
1311117658
commit
0eed9d1b60
|
@ -33,6 +33,7 @@ FEATURES
|
|||
* Gaia
|
||||
|
||||
* SDK
|
||||
* [querier] added custom querier functionality, so ABCI query requests can be handled by keepers
|
||||
|
||||
* Tendermint
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
|
||||
The Cosmos SDK has all the necessary pre-built modules to add functionality on top of a `BaseApp`, which is the template to build a blockchain dApp in Cosmos. In this context, a `module` is a fundamental unit in the Cosmos SDK.
|
||||
|
||||
Each module is an extension of the `BaseApp`'s functionalities that defines transactions, handles application state and manages the state transition logic. Each module also contains handlers for messages and transactions, as well as REST and CLI for secure user interactions.
|
||||
Each module is an extension of the `BaseApp`'s functionalities that defines transactions, handles application state and manages the state transition logic. Each module also contains handlers for messages and transactions, queriers for handling query requests, as well as REST and CLI for secure user interactions.
|
||||
|
||||
Some of the most important modules in the SDK are:
|
||||
|
||||
|
|
Loading…
Reference in New Issue