cosmos-sdk/docs/core/baseapp.md

686 B

BaseApp

The BaseApp is an abstraction over the Tendermint ABCI that simplifies application development by handling common low-level concerns. It serves as the mediator between the two key components of an SDK app: the store and the message handlers.

The BaseApp implements the abci.Application interface. It uses a MultiStore to manage the state, a Router for transaction handling, and Set methods to specify functions to run at the beginning and end of every block.

Every SDK app begins with a BaseApp:

app := baseapp.NewBaseApp(appName, cdc, logger, db),