# BaseApp
Before looking at BaseApp
, make sure to read the previous sections:
In this section you will discover how to define an application state machine and service router, how to create custom transaction processing, and how to create periodic processes that execute at the beginning or end of each block.
BaseApp
is a boilerplate implementation of a Cosmos SDK application. This abstraction implements functionalities that every Interchain application needs, starting with an implementation of the CometBFT Application Blockchain Interface (ABCI).
The CometBFT consensus is application agnostic. It establishes the canonical transaction list and sends confirmed transactions to Cosmos SDK applications for interpretation, and in turn receives transactions from Cosmos SDK applications and submits them to the validators for confirmation.
Applications that rely on the CometBFT consensus must implement concrete functions that support the ABCI interface. BaseApp
includes an implementation of ABCI so developers are not required to construct one.
ABCI itself includes methods such as DeliverTx
, which delivers a transaction. The interpretation of the transaction is an application-level responsibility. Since a typical application supports more than one type of transaction, interpretation implies the need for a service router that will send the transaction to different interpreters based on the transaction type. BaseApp
includes a service router implementation.
As well as an ABCI implementation, BaseApp
also provides a state machine implementation. The implementation of a state machine is an application-level concern because the CometBFT consensus is application-agnostic. The Cosmos SDK state machine implementation contains an overall state that is subdivided into various substates. Subdivisions include module states, persistent states, and transient states. These are all implemented in BaseApp
.
BaseApp
provides a secure interface between the application, the blockchain, and the state machine while defining as little as possible about the state machine.
Watch Julien Robert, Developer Relations Engineer for the Cosmos SDK, introduce BaseApp:
# Defining an application
Developers usually create a custom type for their application by referencing BaseApp
and declaring store keys, keepers, and a module manager, like this:
Extending the application with BaseApp
gives the former access to all the methods of BaseApp
. Developers compose their custom application with the modules they want, while not having to concern themselves with the hard work of implementing the ABCI, the service routers, and the state management logic.
# Type definition
The BaseApp
type holds many important parameters (opens new window) for any Cosmos SDK-based application.
# Bootstrapping
Important parameters that are initialized during the bootstrapping of the application are:
CommitMultiStore
: this is the main store of the application, which holds the canonical state that is committed at the end of each block. This store is not cached, meaning it is not used to update the application's volatile (un-committed) states.The
CommitMultiStore
is a store of stores. Each module of the application uses one or multipleKVStores
in the multistore to persist their subset of the state.Database: the database is used by the
CommitMultiStore
to handle data persistence.Msg
service router: themsgServiceRouter
facilitates the routing ofsdk.Msg
requests to the appropriate moduleMsg
service for processing.An
sdk.Msg
here refers to the transaction component that needs to be processed by a service to update the application state, and not to the ABCI message, which implements the interface between the application and the underlying consensus engine.gRPC Query Router: the
grpcQueryRouter
facilitates the routing of gRPC queries to the appropriate module that will process them. These queries are not ABCI messages themselves. They are relayed to the relevant module's gRPC query service.TxDecoder
: this is used to decode raw transaction bytes relayed by the CometBFT.ParamStore
: this is the parameter store used to get and set application consensus parameters.AnteHandler
: this is used to handle signature verification, fee payment, and other pre-message execution checks when a transaction is received. It is executed duringCheckTx/RecheckTx
andDeliverTx
.InitChainer
,BeginBlocker
, andEndBlocker
: these are the functions executed when the application receives theInitChain
,BeginBlock
, andEndBlock
ABCI messages from CometBFT.
# Volatile state
Parameters that define volatile states, cached states, include:
- checkState: this state is updated during
CheckTx
and resets onCommit
. - deliverState: this state is updated during
DeliverTx
and set to nil onCommit
. It gets re-initialized onBeginBlock
.
# Consensus parameters
Consensus parameters define the overall consensus state:
voteInfos
: this parameter carries the list of validators whose pre-commit is missing, either because they did not vote or because the proposer did not include their vote. This information is carried by the context and can be used by the application for various things, like punishing absent validators.minGasPrices
: this parameter defines the minimum gas prices accepted by the node. This is a local parameter, meaning each full-node can set a differentminGasPrices
. It is used in theAnteHandler
duringCheckTx
mainly as a spam protection mechanism. The transaction enters the mempool only if the gas prices of the transaction are greater than one of the minimum gas prices inminGasPrices
. IfminGasPrices == 1uatom,1photon
, the gas price of the transaction must be greater than1uatom OR 1photon
.appVersion
: version of the application set in the application's constructor function.
# Constructor
Consider the following simple constructor:
The BaseApp
constructor function is pretty straightforward. Notice the possibility of providing additional options
to the BaseApp
, which executes them in order. These options are generally setter functions for important parameters, like SetPruning()
to set pruning options, or SetMinGasPrices()
to set the node's min-gas-prices.
Developers can add additional options based on their application's needs.
# States
BaseApp
provides three primary states. Two are volatile and one is persistent:
- The persistent main state is the canonical state of the application.
- The volatile states
checkState
anddeliverState
are used to handle transitions between main states during commits.
There is one single CommitMultiStore
, referred to as the main state or root state. BaseApp
derives the two volatile states using a mechanism called branching from this main state which is performed by the CacheWrap
function.
# InitChain
state updates
The two volatile states checkState
and deliverState
are set by branching the root CommitMultiStore
during InitChain
. Any subsequent reads and writes happen on branched versions of the CommitMultiStore
. All reads to the branched store are cached to avoid unnecessary roundtrips to the main state.
# CheckTx
state updates
The checkState
, which is based on the last committed state from the root store, is used for any reads and writes during CheckTx
. Here, you only execute the AnteHandler
and verify a service router exists for every message in the transaction.
Note that you branch the already branched checkState
when you execute the AnteHandler
. This has the side effect that if the AnteHandler
fails, the state transitions will not be reflected in the checkState
. checkState
is only updated on success.
# BeginBlock
state updates
The deliverState
is set for use in subsequent DeliverTx
ABCI messages during BeginBlock
. deliverState
is based on the last committed state from the root store, and is branched.
Note the deliverState
is set to nil on Commit
.
# DeliverTx
state updates
The state flow for DeliverTx
is nearly identical to CheckTx
, except state transitions occur on the deliverState
and messages in a transaction are executed. Similarly to CheckTx
, state transitions occur on a doubly branched state, deliverState
. Successful message execution results in writes being committed to deliverState
.
If message execution fails, state transitions from the AnteHandler
are persisted.
# Commit
state updates
All the state transitions that occurred in deliverState
are finally written during Commit
to the root CommitMultiStore
, which in turn is committed to disk and results in a new application root hash. These state transitions are now considered final. The checkState
is finally set to the newly committed state and deliverState
is set to nil to be reset on BeginBlock
.
# ParamStore
During InitChain
, the RequestInitChain
provides ConsensusParams
, which contains parameters related to block execution such as maximum gas and size in addition to evidence parameters. If these parameters are non-nil, they are set in the BaseApp
's ParamStore
. The ParamStore
is managed behind the scenes by an x/params
module subspace. This allows the parameters to be tweaked via on-chain governance.
# Service routers
When messages and queries are received by the application, they must be routed as is appropriate to be processed. Routing is done via BaseApp
, which holds a msgServiceRouter
for messages and a grpcQueryRouter
for queries.
# Msg
service router
Are you looking for more information on BaseApp
? See the Cosmos SDK documentation (opens new window).
The main ABCI messages that BaseApp
implements are CheckTx
(opens new window) and DeliverTx
(opens new window).
Other ABCI message handlers being implemented are:
InitChain
BeginBlock
EndBlock
Commit
Info
Query
Earlier in the design of your blockchain, you defined a game deadline. When do you verify that a game has expired?
An interesting feature of an ABCI application is that you can have it perform some actions at the end of each block. To expire games that have timed out at the end of a block, you need to hook your keeper to the right call.
The Cosmos SDK will call into each module at various points when building the whole application. The function it calls at each block's end looks like this:
This is where you write the necessary code, preferably in the keeper. For example:
How can you ensure that the execution of this EndBlock
does not become prohibitively expensive? After all, the potential number of games to expire is unbounded, which can be disastrous in the blockchain world. Is there a situation or attack vector that makes this a possibility? And what can you do to prevent it?
The timeout duration is fixed, and is the same for all games. This means that the n
games that expire in a given block have all been created or updated at roughly the same time, or block height h
, with margins of error h-1
and h+1
.
These created and updated games are limited in number, because (as established in the chain consensus parameters) every block has a maximum amount of gas and therefore a limited number of transactions it can include. If by chance all games in blocks h-1
, h
, and h+1
expire now, then the EndBlock
function would have to expire three times as many games as a block can handle with its transactions. This is a worst-case scenario, but most likely it is still manageable.
Be careful about letting the game creator pick a timeout duration. This could allow a malicious actor to stagger game creations over a large number of blocks with decreasing timeouts, so that they all expire at the same time.
If you want to go beyond out-of-context code samples like the above and see in more detail how to define these features, go to Run Your Own Cosmos Chain.
More precisely, you can jump to:
- Auto-Expiring Games to see how to implement the expiration of games in
EndBlock
.
To summarize, this section has explored:
BaseApp
, a boilerplate implementation of a Cosmos SDK application which provides core functionalities (such as ABCI) and a state machine implementation.- How
BaseApp
delivers a secure interface between application, blockchain, and state machine while defining the state machine as little as possible. - How to begin defining an application by declaring store keys, keepers, and a module manager.
- The three primary states of
BaseApp
(the persistent canonical main state of the application, and the two volatile states used to handle transitions during commits,checkState
anddeliverState
), as well as a variety of state updates used by applications. - The use of service routers for handling messages and queries.