198 lines
6.1 KiB
Go
198 lines
6.1 KiB
Go
package app
|
|
|
|
import (
|
|
"encoding/json"
|
|
"os"
|
|
|
|
abci "github.com/tendermint/tendermint/abci/types"
|
|
cmn "github.com/tendermint/tendermint/libs/common"
|
|
dbm "github.com/tendermint/tendermint/libs/db"
|
|
"github.com/tendermint/tendermint/libs/log"
|
|
tmtypes "github.com/tendermint/tendermint/types"
|
|
|
|
bam "github.com/cosmos/cosmos-sdk/baseapp"
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
"github.com/cosmos/cosmos-sdk/wire"
|
|
"github.com/cosmos/cosmos-sdk/x/auth"
|
|
"github.com/cosmos/cosmos-sdk/x/bank"
|
|
"github.com/cosmos/cosmos-sdk/x/gov"
|
|
"github.com/cosmos/cosmos-sdk/x/ibc"
|
|
"github.com/cosmos/cosmos-sdk/x/slashing"
|
|
"github.com/cosmos/cosmos-sdk/x/stake"
|
|
)
|
|
|
|
const (
|
|
appName = "GaiaApp"
|
|
)
|
|
|
|
// default home directories for expected binaries
|
|
var (
|
|
DefaultCLIHome = os.ExpandEnv("$HOME/.gaiacli")
|
|
DefaultNodeHome = os.ExpandEnv("$HOME/.gaiad")
|
|
)
|
|
|
|
// Extended ABCI application
|
|
type GaiaApp struct {
|
|
*bam.BaseApp
|
|
cdc *wire.Codec
|
|
|
|
// keys to access the substores
|
|
keyMain *sdk.KVStoreKey
|
|
keyAccount *sdk.KVStoreKey
|
|
keyIBC *sdk.KVStoreKey
|
|
keyStake *sdk.KVStoreKey
|
|
keySlashing *sdk.KVStoreKey
|
|
keyGov *sdk.KVStoreKey
|
|
keyFeeCollection *sdk.KVStoreKey
|
|
|
|
// Manage getting and setting accounts
|
|
accountMapper auth.AccountMapper
|
|
feeCollectionKeeper auth.FeeCollectionKeeper
|
|
coinKeeper bank.Keeper
|
|
ibcMapper ibc.Mapper
|
|
stakeKeeper stake.Keeper
|
|
slashingKeeper slashing.Keeper
|
|
govKeeper gov.Keeper
|
|
}
|
|
|
|
func NewGaiaApp(logger log.Logger, db dbm.DB) *GaiaApp {
|
|
cdc := MakeCodec()
|
|
|
|
// create your application object
|
|
var app = &GaiaApp{
|
|
BaseApp: bam.NewBaseApp(appName, cdc, logger, db),
|
|
cdc: cdc,
|
|
keyMain: sdk.NewKVStoreKey("main"),
|
|
keyAccount: sdk.NewKVStoreKey("acc"),
|
|
keyIBC: sdk.NewKVStoreKey("ibc"),
|
|
keyStake: sdk.NewKVStoreKey("stake"),
|
|
keySlashing: sdk.NewKVStoreKey("slashing"),
|
|
keyGov: sdk.NewKVStoreKey("gov"),
|
|
keyFeeCollection: sdk.NewKVStoreKey("fee"),
|
|
}
|
|
|
|
// define the accountMapper
|
|
app.accountMapper = auth.NewAccountMapper(
|
|
app.cdc,
|
|
app.keyAccount, // target store
|
|
&auth.BaseAccount{}, // prototype
|
|
)
|
|
|
|
// add handlers
|
|
app.coinKeeper = bank.NewKeeper(app.accountMapper)
|
|
app.ibcMapper = ibc.NewMapper(app.cdc, app.keyIBC, app.RegisterCodespace(ibc.DefaultCodespace))
|
|
app.stakeKeeper = stake.NewKeeper(app.cdc, app.keyStake, app.coinKeeper, app.RegisterCodespace(stake.DefaultCodespace))
|
|
app.slashingKeeper = slashing.NewKeeper(app.cdc, app.keySlashing, app.stakeKeeper, app.RegisterCodespace(slashing.DefaultCodespace))
|
|
app.govKeeper = gov.NewKeeper(app.cdc, app.keyGov, app.coinKeeper, app.stakeKeeper, app.RegisterCodespace(gov.DefaultCodespace))
|
|
app.feeCollectionKeeper = auth.NewFeeCollectionKeeper(app.cdc, app.keyFeeCollection)
|
|
|
|
// register message routes
|
|
app.Router().
|
|
AddRoute("bank", bank.NewHandler(app.coinKeeper)).
|
|
AddRoute("ibc", ibc.NewHandler(app.ibcMapper, app.coinKeeper)).
|
|
AddRoute("stake", stake.NewHandler(app.stakeKeeper)).
|
|
AddRoute("slashing", slashing.NewHandler(app.slashingKeeper)).
|
|
AddRoute("gov", gov.NewHandler(app.govKeeper))
|
|
|
|
// initialize BaseApp
|
|
app.SetInitChainer(app.initChainer)
|
|
app.SetBeginBlocker(app.BeginBlocker)
|
|
app.SetEndBlocker(app.EndBlocker)
|
|
app.SetAnteHandler(auth.NewAnteHandler(app.accountMapper, app.feeCollectionKeeper))
|
|
app.MountStoresIAVL(app.keyMain, app.keyAccount, app.keyIBC, app.keyStake, app.keySlashing, app.keyGov, app.keyFeeCollection)
|
|
err := app.LoadLatestVersion(app.keyMain)
|
|
if err != nil {
|
|
cmn.Exit(err.Error())
|
|
}
|
|
|
|
return app
|
|
}
|
|
|
|
// custom tx codec
|
|
func MakeCodec() *wire.Codec {
|
|
var cdc = wire.NewCodec()
|
|
ibc.RegisterWire(cdc)
|
|
bank.RegisterWire(cdc)
|
|
stake.RegisterWire(cdc)
|
|
slashing.RegisterWire(cdc)
|
|
gov.RegisterWire(cdc)
|
|
auth.RegisterWire(cdc)
|
|
sdk.RegisterWire(cdc)
|
|
wire.RegisterCrypto(cdc)
|
|
return cdc
|
|
}
|
|
|
|
// application updates every end block
|
|
func (app *GaiaApp) BeginBlocker(ctx sdk.Context, req abci.RequestBeginBlock) abci.ResponseBeginBlock {
|
|
tags := slashing.BeginBlocker(ctx, req, app.slashingKeeper)
|
|
|
|
return abci.ResponseBeginBlock{
|
|
Tags: tags.ToKVPairs(),
|
|
}
|
|
}
|
|
|
|
// application updates every end block
|
|
// nolint: unparam
|
|
func (app *GaiaApp) EndBlocker(ctx sdk.Context, req abci.RequestEndBlock) abci.ResponseEndBlock {
|
|
validatorUpdates := stake.EndBlocker(ctx, app.stakeKeeper)
|
|
|
|
tags, _ := gov.EndBlocker(ctx, app.govKeeper)
|
|
|
|
return abci.ResponseEndBlock{
|
|
ValidatorUpdates: validatorUpdates,
|
|
Tags: tags,
|
|
}
|
|
}
|
|
|
|
// custom logic for gaia initialization
|
|
func (app *GaiaApp) initChainer(ctx sdk.Context, req abci.RequestInitChain) abci.ResponseInitChain {
|
|
stateJSON := req.AppStateBytes
|
|
// TODO is this now the whole genesis file?
|
|
|
|
var genesisState GenesisState
|
|
err := app.cdc.UnmarshalJSON(stateJSON, &genesisState)
|
|
if err != nil {
|
|
panic(err) // TODO https://github.com/cosmos/cosmos-sdk/issues/468
|
|
// return sdk.ErrGenesisParse("").TraceCause(err, "")
|
|
}
|
|
|
|
// load the accounts
|
|
for _, gacc := range genesisState.Accounts {
|
|
acc := gacc.ToAccount()
|
|
acc.AccountNumber = app.accountMapper.GetNextAccountNumber(ctx)
|
|
app.accountMapper.SetAccount(ctx, acc)
|
|
}
|
|
|
|
// load the initial stake information
|
|
stake.InitGenesis(ctx, app.stakeKeeper, genesisState.StakeData)
|
|
|
|
gov.InitGenesis(ctx, app.govKeeper, gov.DefaultGenesisState())
|
|
|
|
return abci.ResponseInitChain{}
|
|
}
|
|
|
|
// export the state of gaia for a genesis file
|
|
func (app *GaiaApp) ExportAppStateAndValidators() (appState json.RawMessage, validators []tmtypes.GenesisValidator, err error) {
|
|
ctx := app.NewContext(true, abci.Header{})
|
|
|
|
// iterate to get the accounts
|
|
accounts := []GenesisAccount{}
|
|
appendAccount := func(acc auth.Account) (stop bool) {
|
|
account := NewGenesisAccountI(acc)
|
|
accounts = append(accounts, account)
|
|
return false
|
|
}
|
|
app.accountMapper.IterateAccounts(ctx, appendAccount)
|
|
|
|
genState := GenesisState{
|
|
Accounts: accounts,
|
|
StakeData: stake.WriteGenesis(ctx, app.stakeKeeper),
|
|
}
|
|
appState, err = wire.MarshalJSONIndent(app.cdc, genState)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
validators = stake.WriteValidators(ctx, app.stakeKeeper)
|
|
return appState, validators, nil
|
|
}
|