mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 10:05:18 +00:00
4beaf0de54
* add swap claim type * add store methods for swap claims * add swap claims to genesis state * tidy up cdp and hard hook doc comments * add uncalled hooks to the swap keeper * add swap rewards sync method * add swap rewards init method * connect swap rewards via swap hooks * Update querier and client for swap claims (#951) * refactor querier to dedupe code * add swap claims querier endpoint * add swap claim querying to rest * add swap claim querying to cli * add keeper method to iterate swap reward indexes * simplify reward-factors query endpoint, add swap * update swap hook to match latest swap branch * rename func to not collide with latest swap branch * Squash merge swap-acceptance branch (#956) * add failing acceptance test for a user depositing into a pool * implement GetAccount test helper * implement swap.MsgDeposit for creating and adding liquidity to a pool * update aliases, add event types, and fix typo/compiler errors in handler test * use only aliases names in handler test (don't use swap types -- ensures we have run aliasgen), add assertion for even type message * implement account and module account balance checks in handler test * fill out handler assertions for testing keeper state and events * update signed json representation and register swap/MsgDeposit for proper encoding * fill out boilerplate to get handler test to compile * alias gen for pool * add handling of message type; fill in deposit keeper method for succesful compile; noop but test assertions now run up to module acc not nil check * add module account permissions for swap module -- fixes module account creation; pass account keeper and supply keeper into swap keeper to allow the ability to work with user and module accounts * implement create pool logic for msg deposit; allows creation of a of new pool, checking params to see if it is allowed. Initi shares are set, and senders number of shares are stored * Swap migrations scaffolding (#925) * swap module scaffolding * global swap fee * can't think of a reason for begin blocker; removing for abci.go for now; * test pair types; refactor pair name logic; simplify pairs validation and fix stack overflow error * check comparison * use test package * init swap module genesis * add basic marshall tests * remove reward apy from pairs * fix integration helpers * use max swap fee constant; fix validation of swap fee; add tests to cover param validation and param set setup * use noerror over nil * start genesis tests * test param set validation mirrors param validation * add genesis tests * remove print statement * add subtests for genesis test cases; add extra querier test for unknown route; add keeper params testing * add spec * update swagger * find replace hard -> swap in comments * remove unused method * rename pairs to allowed pools; pool is more commonly used, and allowedPool makes it more clear what swap parameter is for. In addition, we won't conflict with Pool data structure for storing a created pool in the store. * remove generated link * missed spec rename * validate token order for allowed pools * fix swagger * json should be snakecase; change allowedPools to allowed_pools * add legacy types * add swap genesis to v0_15 migration * add legacy types * add swap genesis to v0_15 migration * migration revisions Co-authored-by: Nick DeLuca <nickdeluca08@gmail.com> * keeper todos * update keeper tests * type todos * update types tests * tx deposit cli cmd * tx deposit rest * Swap module simulation scaffolding (#924) * sims scaffolding * add noop operation * genesis revisions * add param changes * mvoe persistance methods to main keeper file, consolidate tests * make helper methods private. they are tested via deposit method, and unit testing them would make test suite brittle and refactoring difficult * use more clear coin variables * code 1 is reserved, use code 2 and sequence all errors * remove todo * Implement deadline for swap module module message. This is implemented in handler with a interface to easily apply to it to all messages, and separate msg validation concerns from the keeper * move allowed pools to params -- let pool and pool_test focus on pool domain logic, not parameter & governance concerns * update alias * add unitless implementatin of constant product liquidity pool to isolate and enapsulate liquidity logic. Swap methods interfaces are added, but implementation not yet added * nits and todos * add ErrInvalidPool * add tests for edge cases around pool depletion; add explicit panic for edge case that results in a pool reserve being zero; handle pool reinitialization if it is empty * touch up comments and flush out the rest of assertions * add data structures for keeper state storage separate from pool domain objects, and improve structure for easier querying * rename pool name to pool key for events * add support for a denominated pool that uses sdk.Coins and sdk.Coin arguments, keeping tracking of the units in the base pool. This gives nice separation between pool logic, and coin/denom logic * refactor keeper to use new records for storage, and implement pool deposit using the denominated pool * address previous PR comment - reminder for migration if changing account permissions * msg deposit should validate that denoms are not equal * add godoc comments * golint and some poolName -> poolID cleanup * implement adding liquidity to an existing pool * hardcode pools in sims * touch up comment * withdraw keeper logic * withdraw type updates * add withdraw msg tx handler * initial withdraw test * fix panic * use new denominated pool with existing shares * fix: check args on deposit cmd * add slippage limit check for depositing to an existing pool * send coins just before event emission * check liquidity returned is greater than zero for both coins; ensure returned number of shares are greater than zero * add deadline to msgwithdraw * register msgwithdraw * scaffold msgwithdraw types test * register the correct msg * modify swap functions to also return the amount paid for the pool swap fee. This will be used to calculate slippage and for event tracking * add slippage types * add expected withdrawal coins * calculate slippage against expected coins * update withdraw keeper tests * spelling, improve comments on add liquidity math * typo * typo * grammer * typo / grammer * remove pool_id from withdraw msg * add slippage to tx cmd * TestWithdraw_Partial * nit * add withdraw no pool, no deposit record tests * drop event check on partial withdraw test * fix broken link * fix broken link * resolve merge conflicts * ensure swap fee can not be equal to 1; add full implementation of swap pool methods; these implementation ensure that the pool invariant is always greater or equal to the previous invariant * refactor duplicated code into private swap methods * add runtime assertion to always ensure invariant is greater or equal to the previous invariant sub fee on swaps * improve comments for base pool swap functions * add swap exact input and output methods to denominated pool that wrap the base pool interface for swapping * comment touch ups * more comment touchups * fix msg deposit struct tag (#943) * use better name for swap calculation private methods * nits: golint * fix misspelling in method name * Add HARD token governance committee for Hard module (#941) * add hard gov token committee * revisions: update migration * revisions: update test/data file * initial revisions * add TokenCommittee JSONMarshal test * fix SetPermissions method * remove BaseCommittee Type field * add incentive params to allowed params * Add SWP token governance committee for Swap module (#946) * add swp token commitee to migration * update test, add gen export utility method * final revisions: add TODO * remove slippage from withdraw to use min values for coins; add additional validation test cases * update alias for swap module * add withdraw tests to handler for increased coverage; note: first pass, improvements still yet to be made here * refact withdraw keeper to use min amounts; panic for cases that do not happen in normal situations * lint fixes * use total shares to track if pool should be deleted; add more in depth withdraw comment * add exact args for withdraw cmd * extract record update methods * update depositor share record if it exists -- do not overwrite an existing record; ensures no loss of shares if the same address deposits more than once * Swap queries: deposit, pool, pools (#949) * query deposits types * implement deposit querier keeper methods * query deposits CLI * query deposits REST * query types for pool/pools * pool/pools querier keeper methods * pool/pools CLI * pool/pools REST * basic pool/pools query tests * basic deposit querier test * iterate share records via owner bytes * nit: add example for querying deposits by owner only Co-authored-by: karzak <kjydavis3@gmail.com> * feat: add REST tx handler for swap LP withdrawals Co-authored-by: Nick DeLuca <nickdeluca08@gmail.com> Co-authored-by: Denali Marsh <denali@kava.io> Co-authored-by: denalimarsh <denalimarsh@gmail.com> Co-authored-by: karzak <kjydavis3@gmail.com> * expand incentive cli query docs Co-authored-by: Nick DeLuca <nickdeluca08@gmail.com> Co-authored-by: Denali Marsh <denali@kava.io> Co-authored-by: denalimarsh <denalimarsh@gmail.com> Co-authored-by: karzak <kjydavis3@gmail.com> * minor update to godoc comment Co-authored-by: Nick DeLuca <nickdeluca08@gmail.com> Co-authored-by: Denali Marsh <denali@kava.io> Co-authored-by: denalimarsh <denalimarsh@gmail.com> Co-authored-by: karzak <kjydavis3@gmail.com>
620 lines
22 KiB
Go
620 lines
22 KiB
Go
package app
|
|
|
|
import (
|
|
"io"
|
|
"os"
|
|
|
|
dbm "github.com/tendermint/tm-db"
|
|
|
|
abci "github.com/tendermint/tendermint/abci/types"
|
|
"github.com/tendermint/tendermint/libs/log"
|
|
tmos "github.com/tendermint/tendermint/libs/os"
|
|
|
|
bam "github.com/cosmos/cosmos-sdk/baseapp"
|
|
"github.com/cosmos/cosmos-sdk/codec"
|
|
"github.com/cosmos/cosmos-sdk/simapp"
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
"github.com/cosmos/cosmos-sdk/types/module"
|
|
"github.com/cosmos/cosmos-sdk/version"
|
|
"github.com/cosmos/cosmos-sdk/x/auth"
|
|
"github.com/cosmos/cosmos-sdk/x/auth/vesting"
|
|
"github.com/cosmos/cosmos-sdk/x/bank"
|
|
"github.com/cosmos/cosmos-sdk/x/crisis"
|
|
distr "github.com/cosmos/cosmos-sdk/x/distribution"
|
|
"github.com/cosmos/cosmos-sdk/x/evidence"
|
|
"github.com/cosmos/cosmos-sdk/x/genutil"
|
|
"github.com/cosmos/cosmos-sdk/x/gov"
|
|
"github.com/cosmos/cosmos-sdk/x/mint"
|
|
"github.com/cosmos/cosmos-sdk/x/params"
|
|
paramsclient "github.com/cosmos/cosmos-sdk/x/params/client"
|
|
"github.com/cosmos/cosmos-sdk/x/slashing"
|
|
"github.com/cosmos/cosmos-sdk/x/staking"
|
|
"github.com/cosmos/cosmos-sdk/x/supply"
|
|
"github.com/cosmos/cosmos-sdk/x/upgrade"
|
|
upgradeclient "github.com/cosmos/cosmos-sdk/x/upgrade/client"
|
|
|
|
"github.com/kava-labs/kava/app/ante"
|
|
"github.com/kava-labs/kava/x/auction"
|
|
"github.com/kava-labs/kava/x/bep3"
|
|
"github.com/kava-labs/kava/x/cdp"
|
|
"github.com/kava-labs/kava/x/committee"
|
|
"github.com/kava-labs/kava/x/hard"
|
|
"github.com/kava-labs/kava/x/incentive"
|
|
"github.com/kava-labs/kava/x/issuance"
|
|
"github.com/kava-labs/kava/x/kavadist"
|
|
"github.com/kava-labs/kava/x/pricefeed"
|
|
"github.com/kava-labs/kava/x/swap"
|
|
validatorvesting "github.com/kava-labs/kava/x/validator-vesting"
|
|
)
|
|
|
|
const (
|
|
appName = "kava"
|
|
Bech32MainPrefix = "kava"
|
|
Bip44CoinType = 459 // see https://github.com/satoshilabs/slips/blob/master/slip-0044.md
|
|
)
|
|
|
|
var (
|
|
// default home directories for expected binaries
|
|
DefaultCLIHome = os.ExpandEnv("$HOME/.kvcli")
|
|
DefaultNodeHome = os.ExpandEnv("$HOME/.kvd")
|
|
|
|
// ModuleBasics manages simple versions of full app modules. It's used for things such as codec registration and genesis file verification.
|
|
ModuleBasics = module.NewBasicManager(
|
|
genutil.AppModuleBasic{},
|
|
auth.AppModuleBasic{},
|
|
validatorvesting.AppModuleBasic{},
|
|
bank.AppModuleBasic{},
|
|
staking.AppModuleBasic{},
|
|
mint.AppModuleBasic{},
|
|
distr.AppModuleBasic{},
|
|
gov.NewAppModuleBasic(
|
|
paramsclient.ProposalHandler, distr.ProposalHandler, committee.ProposalHandler,
|
|
upgradeclient.ProposalHandler, kavadist.ProposalHandler,
|
|
),
|
|
params.AppModuleBasic{},
|
|
crisis.AppModuleBasic{},
|
|
slashing.AppModuleBasic{},
|
|
upgrade.AppModuleBasic{},
|
|
supply.AppModuleBasic{},
|
|
evidence.AppModuleBasic{},
|
|
auction.AppModuleBasic{},
|
|
cdp.AppModuleBasic{},
|
|
pricefeed.AppModuleBasic{},
|
|
committee.AppModuleBasic{},
|
|
bep3.AppModuleBasic{},
|
|
kavadist.AppModuleBasic{},
|
|
incentive.AppModuleBasic{},
|
|
issuance.AppModuleBasic{},
|
|
hard.AppModuleBasic{},
|
|
swap.AppModuleBasic{},
|
|
)
|
|
|
|
// module account permissions
|
|
// if these are changed, then the permissions
|
|
// must also be migrated during a chain upgrade
|
|
mAccPerms = map[string][]string{
|
|
auth.FeeCollectorName: nil,
|
|
distr.ModuleName: nil,
|
|
mint.ModuleName: {supply.Minter},
|
|
staking.BondedPoolName: {supply.Burner, supply.Staking},
|
|
staking.NotBondedPoolName: {supply.Burner, supply.Staking},
|
|
gov.ModuleName: {supply.Burner},
|
|
validatorvesting.ModuleName: {supply.Burner},
|
|
auction.ModuleName: nil,
|
|
cdp.ModuleName: {supply.Minter, supply.Burner},
|
|
cdp.LiquidatorMacc: {supply.Minter, supply.Burner},
|
|
bep3.ModuleName: {supply.Minter, supply.Burner},
|
|
kavadist.ModuleName: {supply.Minter},
|
|
issuance.ModuleAccountName: {supply.Minter, supply.Burner},
|
|
hard.ModuleAccountName: {supply.Minter},
|
|
swap.ModuleAccountName: nil,
|
|
}
|
|
|
|
// module accounts that are allowed to receive tokens
|
|
allowedReceivingModAcc = map[string]bool{
|
|
distr.ModuleName: true,
|
|
}
|
|
)
|
|
|
|
// Verify app interface at compile time
|
|
var _ simapp.App = (*App)(nil)
|
|
|
|
// AppOptions bundles several configuration params for an App.
|
|
// The zero value can be used as a sensible default.
|
|
type AppOptions struct {
|
|
SkipLoadLatest bool
|
|
SkipUpgradeHeights map[int64]bool
|
|
InvariantCheckPeriod uint
|
|
MempoolEnableAuth bool
|
|
MempoolAuthAddresses []sdk.AccAddress
|
|
}
|
|
|
|
// App represents an extended ABCI application
|
|
type App struct {
|
|
*bam.BaseApp
|
|
cdc *codec.Codec
|
|
|
|
invCheckPeriod uint
|
|
|
|
// keys to access the substores
|
|
keys map[string]*sdk.KVStoreKey
|
|
tkeys map[string]*sdk.TransientStoreKey
|
|
|
|
// keepers from all the modules
|
|
accountKeeper auth.AccountKeeper
|
|
bankKeeper bank.Keeper
|
|
supplyKeeper supply.Keeper
|
|
stakingKeeper staking.Keeper
|
|
slashingKeeper slashing.Keeper
|
|
mintKeeper mint.Keeper
|
|
distrKeeper distr.Keeper
|
|
govKeeper gov.Keeper
|
|
crisisKeeper crisis.Keeper
|
|
upgradeKeeper upgrade.Keeper
|
|
paramsKeeper params.Keeper
|
|
evidenceKeeper evidence.Keeper
|
|
vvKeeper validatorvesting.Keeper
|
|
auctionKeeper auction.Keeper
|
|
cdpKeeper cdp.Keeper
|
|
pricefeedKeeper pricefeed.Keeper
|
|
committeeKeeper committee.Keeper
|
|
bep3Keeper bep3.Keeper
|
|
kavadistKeeper kavadist.Keeper
|
|
incentiveKeeper incentive.Keeper
|
|
issuanceKeeper issuance.Keeper
|
|
hardKeeper hard.Keeper
|
|
swapKeeper swap.Keeper
|
|
|
|
// the module manager
|
|
mm *module.Manager
|
|
|
|
// simulation manager
|
|
sm *module.SimulationManager
|
|
}
|
|
|
|
// NewApp returns a reference to an initialized App.
|
|
func NewApp(logger log.Logger, db dbm.DB, traceStore io.Writer, appOpts AppOptions, baseAppOptions ...func(*bam.BaseApp)) *App {
|
|
|
|
cdc := MakeCodec()
|
|
|
|
bApp := bam.NewBaseApp(appName, logger, db, auth.DefaultTxDecoder(cdc), baseAppOptions...)
|
|
bApp.SetCommitMultiStoreTracer(traceStore)
|
|
bApp.SetAppVersion(version.Version)
|
|
|
|
keys := sdk.NewKVStoreKeys(
|
|
bam.MainStoreKey, auth.StoreKey, staking.StoreKey,
|
|
supply.StoreKey, mint.StoreKey, distr.StoreKey, slashing.StoreKey,
|
|
gov.StoreKey, params.StoreKey, upgrade.StoreKey, evidence.StoreKey,
|
|
validatorvesting.StoreKey, auction.StoreKey, cdp.StoreKey, pricefeed.StoreKey,
|
|
bep3.StoreKey, kavadist.StoreKey, incentive.StoreKey, issuance.StoreKey, committee.StoreKey,
|
|
hard.StoreKey, swap.StoreKey,
|
|
)
|
|
tkeys := sdk.NewTransientStoreKeys(params.TStoreKey)
|
|
|
|
var app = &App{
|
|
BaseApp: bApp,
|
|
cdc: cdc,
|
|
invCheckPeriod: appOpts.InvariantCheckPeriod,
|
|
keys: keys,
|
|
tkeys: tkeys,
|
|
}
|
|
|
|
// init params keeper and subspaces
|
|
app.paramsKeeper = params.NewKeeper(app.cdc, keys[params.StoreKey], tkeys[params.TStoreKey])
|
|
authSubspace := app.paramsKeeper.Subspace(auth.DefaultParamspace)
|
|
bankSubspace := app.paramsKeeper.Subspace(bank.DefaultParamspace)
|
|
stakingSubspace := app.paramsKeeper.Subspace(staking.DefaultParamspace)
|
|
mintSubspace := app.paramsKeeper.Subspace(mint.DefaultParamspace)
|
|
distrSubspace := app.paramsKeeper.Subspace(distr.DefaultParamspace)
|
|
slashingSubspace := app.paramsKeeper.Subspace(slashing.DefaultParamspace)
|
|
govSubspace := app.paramsKeeper.Subspace(gov.DefaultParamspace).WithKeyTable(gov.ParamKeyTable())
|
|
evidenceSubspace := app.paramsKeeper.Subspace(evidence.DefaultParamspace)
|
|
crisisSubspace := app.paramsKeeper.Subspace(crisis.DefaultParamspace)
|
|
auctionSubspace := app.paramsKeeper.Subspace(auction.DefaultParamspace)
|
|
cdpSubspace := app.paramsKeeper.Subspace(cdp.DefaultParamspace)
|
|
pricefeedSubspace := app.paramsKeeper.Subspace(pricefeed.DefaultParamspace)
|
|
bep3Subspace := app.paramsKeeper.Subspace(bep3.DefaultParamspace)
|
|
kavadistSubspace := app.paramsKeeper.Subspace(kavadist.DefaultParamspace)
|
|
incentiveSubspace := app.paramsKeeper.Subspace(incentive.DefaultParamspace)
|
|
issuanceSubspace := app.paramsKeeper.Subspace(issuance.DefaultParamspace)
|
|
hardSubspace := app.paramsKeeper.Subspace(hard.DefaultParamspace)
|
|
swapSubspace := app.paramsKeeper.Subspace(swap.DefaultParamspace)
|
|
|
|
// add keepers
|
|
app.accountKeeper = auth.NewAccountKeeper(
|
|
app.cdc,
|
|
keys[auth.StoreKey],
|
|
authSubspace,
|
|
auth.ProtoBaseAccount,
|
|
)
|
|
app.bankKeeper = bank.NewBaseKeeper(
|
|
app.accountKeeper,
|
|
bankSubspace,
|
|
app.BlacklistedAccAddrs(),
|
|
)
|
|
app.supplyKeeper = supply.NewKeeper(
|
|
app.cdc,
|
|
keys[supply.StoreKey],
|
|
app.accountKeeper,
|
|
app.bankKeeper,
|
|
mAccPerms,
|
|
)
|
|
stakingKeeper := staking.NewKeeper(
|
|
app.cdc,
|
|
keys[staking.StoreKey],
|
|
app.supplyKeeper,
|
|
stakingSubspace,
|
|
)
|
|
app.mintKeeper = mint.NewKeeper(
|
|
app.cdc,
|
|
keys[mint.StoreKey],
|
|
mintSubspace,
|
|
&stakingKeeper,
|
|
app.supplyKeeper,
|
|
auth.FeeCollectorName,
|
|
)
|
|
app.distrKeeper = distr.NewKeeper(
|
|
app.cdc,
|
|
keys[distr.StoreKey],
|
|
distrSubspace,
|
|
&stakingKeeper,
|
|
app.supplyKeeper,
|
|
auth.FeeCollectorName,
|
|
app.ModuleAccountAddrs(),
|
|
)
|
|
app.slashingKeeper = slashing.NewKeeper(
|
|
app.cdc,
|
|
keys[slashing.StoreKey],
|
|
&stakingKeeper,
|
|
slashingSubspace,
|
|
)
|
|
app.crisisKeeper = crisis.NewKeeper(
|
|
crisisSubspace,
|
|
app.invCheckPeriod,
|
|
app.supplyKeeper,
|
|
auth.FeeCollectorName,
|
|
)
|
|
app.upgradeKeeper = upgrade.NewKeeper(
|
|
appOpts.SkipUpgradeHeights,
|
|
keys[upgrade.StoreKey],
|
|
app.cdc,
|
|
)
|
|
|
|
// create evidence keeper with router
|
|
evidenceKeeper := evidence.NewKeeper(
|
|
app.cdc,
|
|
keys[evidence.StoreKey],
|
|
evidenceSubspace,
|
|
&app.stakingKeeper,
|
|
app.slashingKeeper,
|
|
)
|
|
evidenceRouter := evidence.NewRouter()
|
|
evidenceKeeper.SetRouter(evidenceRouter)
|
|
app.evidenceKeeper = *evidenceKeeper
|
|
|
|
// create committee keeper with router
|
|
committeeGovRouter := gov.NewRouter()
|
|
committeeGovRouter.
|
|
AddRoute(gov.RouterKey, gov.ProposalHandler).
|
|
AddRoute(params.RouterKey, params.NewParamChangeProposalHandler(app.paramsKeeper)).
|
|
AddRoute(distr.RouterKey, distr.NewCommunityPoolSpendProposalHandler(app.distrKeeper)).
|
|
AddRoute(upgrade.RouterKey, upgrade.NewSoftwareUpgradeProposalHandler(app.upgradeKeeper))
|
|
// Note: the committee proposal handler is not registered on the committee router. This means committees cannot create or update other committees.
|
|
// Adding the committee proposal handler to the router is possible but awkward as the handler depends on the keeper which depends on the handler.
|
|
app.committeeKeeper = committee.NewKeeper(
|
|
app.cdc,
|
|
keys[committee.StoreKey],
|
|
committeeGovRouter,
|
|
app.paramsKeeper,
|
|
app.accountKeeper,
|
|
app.supplyKeeper,
|
|
)
|
|
app.kavadistKeeper = kavadist.NewKeeper(
|
|
app.cdc,
|
|
keys[kavadist.StoreKey],
|
|
kavadistSubspace,
|
|
app.supplyKeeper,
|
|
app.distrKeeper,
|
|
app.ModuleAccountAddrs(),
|
|
)
|
|
|
|
// create gov keeper with router
|
|
govRouter := gov.NewRouter()
|
|
govRouter.
|
|
AddRoute(gov.RouterKey, gov.ProposalHandler).
|
|
AddRoute(params.RouterKey, params.NewParamChangeProposalHandler(app.paramsKeeper)).
|
|
AddRoute(distr.RouterKey, distr.NewCommunityPoolSpendProposalHandler(app.distrKeeper)).
|
|
AddRoute(upgrade.RouterKey, upgrade.NewSoftwareUpgradeProposalHandler(app.upgradeKeeper)).
|
|
AddRoute(committee.RouterKey, committee.NewProposalHandler(app.committeeKeeper)).
|
|
AddRoute(kavadist.RouterKey, kavadist.NewCommunityPoolMultiSpendProposalHandler(app.kavadistKeeper))
|
|
app.govKeeper = gov.NewKeeper(
|
|
app.cdc,
|
|
keys[gov.StoreKey],
|
|
govSubspace,
|
|
app.supplyKeeper,
|
|
&stakingKeeper,
|
|
govRouter,
|
|
)
|
|
|
|
app.vvKeeper = validatorvesting.NewKeeper(
|
|
app.cdc,
|
|
keys[validatorvesting.StoreKey],
|
|
app.accountKeeper,
|
|
app.bankKeeper,
|
|
app.supplyKeeper,
|
|
&stakingKeeper,
|
|
)
|
|
app.pricefeedKeeper = pricefeed.NewKeeper(
|
|
app.cdc,
|
|
keys[pricefeed.StoreKey],
|
|
pricefeedSubspace,
|
|
)
|
|
app.auctionKeeper = auction.NewKeeper(
|
|
app.cdc,
|
|
keys[auction.StoreKey],
|
|
app.supplyKeeper,
|
|
auctionSubspace,
|
|
)
|
|
cdpKeeper := cdp.NewKeeper(
|
|
app.cdc,
|
|
keys[cdp.StoreKey],
|
|
cdpSubspace,
|
|
app.pricefeedKeeper,
|
|
app.auctionKeeper,
|
|
app.supplyKeeper,
|
|
app.accountKeeper,
|
|
mAccPerms,
|
|
)
|
|
app.bep3Keeper = bep3.NewKeeper(
|
|
app.cdc,
|
|
keys[bep3.StoreKey],
|
|
app.supplyKeeper,
|
|
app.accountKeeper,
|
|
bep3Subspace,
|
|
app.ModuleAccountAddrs(),
|
|
)
|
|
hardKeeper := hard.NewKeeper(
|
|
app.cdc,
|
|
keys[hard.StoreKey],
|
|
hardSubspace,
|
|
app.accountKeeper,
|
|
app.supplyKeeper,
|
|
&stakingKeeper,
|
|
app.pricefeedKeeper,
|
|
app.auctionKeeper,
|
|
)
|
|
app.issuanceKeeper = issuance.NewKeeper(
|
|
app.cdc,
|
|
keys[issuance.StoreKey],
|
|
issuanceSubspace,
|
|
app.accountKeeper,
|
|
app.supplyKeeper,
|
|
)
|
|
swapKeeper := swap.NewKeeper(
|
|
app.cdc,
|
|
keys[swap.StoreKey],
|
|
swapSubspace,
|
|
app.accountKeeper,
|
|
app.supplyKeeper,
|
|
)
|
|
app.incentiveKeeper = incentive.NewKeeper(
|
|
app.cdc,
|
|
keys[incentive.StoreKey],
|
|
incentiveSubspace,
|
|
app.supplyKeeper,
|
|
&cdpKeeper,
|
|
&hardKeeper,
|
|
app.accountKeeper,
|
|
&stakingKeeper,
|
|
&swapKeeper,
|
|
)
|
|
|
|
// register the staking hooks
|
|
// NOTE: These keepers are passed by reference above, so they will contain these hooks.
|
|
app.stakingKeeper = *stakingKeeper.SetHooks(
|
|
staking.NewMultiStakingHooks(app.distrKeeper.Hooks(), app.slashingKeeper.Hooks(), app.incentiveKeeper.Hooks()))
|
|
|
|
app.cdpKeeper = *cdpKeeper.SetHooks(cdp.NewMultiCDPHooks(app.incentiveKeeper.Hooks()))
|
|
|
|
app.hardKeeper = *hardKeeper.SetHooks(hard.NewMultiHARDHooks(app.incentiveKeeper.Hooks()))
|
|
|
|
app.swapKeeper = *swapKeeper.SetHooks(app.incentiveKeeper.Hooks())
|
|
|
|
// create the module manager (Note: Any module instantiated in the module manager that is later modified
|
|
// must be passed by reference here.)
|
|
app.mm = module.NewManager(
|
|
genutil.NewAppModule(app.accountKeeper, app.stakingKeeper, app.BaseApp.DeliverTx),
|
|
auth.NewAppModule(app.accountKeeper),
|
|
bank.NewAppModule(app.bankKeeper, app.accountKeeper),
|
|
crisis.NewAppModule(&app.crisisKeeper),
|
|
supply.NewAppModule(app.supplyKeeper, app.accountKeeper),
|
|
gov.NewAppModule(app.govKeeper, app.accountKeeper, app.supplyKeeper),
|
|
mint.NewAppModule(app.mintKeeper),
|
|
slashing.NewAppModule(app.slashingKeeper, app.accountKeeper, app.stakingKeeper),
|
|
distr.NewAppModule(app.distrKeeper, app.accountKeeper, app.supplyKeeper, app.stakingKeeper),
|
|
staking.NewAppModule(app.stakingKeeper, app.accountKeeper, app.supplyKeeper),
|
|
upgrade.NewAppModule(app.upgradeKeeper),
|
|
evidence.NewAppModule(app.evidenceKeeper),
|
|
validatorvesting.NewAppModule(app.vvKeeper, app.accountKeeper),
|
|
auction.NewAppModule(app.auctionKeeper, app.accountKeeper, app.supplyKeeper),
|
|
cdp.NewAppModule(app.cdpKeeper, app.accountKeeper, app.pricefeedKeeper, app.supplyKeeper),
|
|
pricefeed.NewAppModule(app.pricefeedKeeper, app.accountKeeper),
|
|
bep3.NewAppModule(app.bep3Keeper, app.accountKeeper, app.supplyKeeper),
|
|
kavadist.NewAppModule(app.kavadistKeeper, app.supplyKeeper),
|
|
incentive.NewAppModule(app.incentiveKeeper, app.accountKeeper, app.supplyKeeper, app.cdpKeeper),
|
|
committee.NewAppModule(app.committeeKeeper, app.accountKeeper),
|
|
issuance.NewAppModule(app.issuanceKeeper, app.accountKeeper, app.supplyKeeper),
|
|
hard.NewAppModule(app.hardKeeper, app.supplyKeeper, app.pricefeedKeeper),
|
|
swap.NewAppModule(app.swapKeeper),
|
|
)
|
|
|
|
// During begin block slashing happens after distr.BeginBlocker so that
|
|
// there is nothing left over in the validator fee pool, so as to keep the
|
|
// CanWithdrawInvariant invariant.
|
|
// Auction.BeginBlocker will close out expired auctions and pay debt back to cdp.
|
|
// So it should be run before cdp.BeginBlocker which cancels out debt with stable and starts more auctions.
|
|
app.mm.SetOrderBeginBlockers(
|
|
upgrade.ModuleName, mint.ModuleName, distr.ModuleName, slashing.ModuleName,
|
|
validatorvesting.ModuleName, kavadist.ModuleName, auction.ModuleName, committee.ModuleName, cdp.ModuleName,
|
|
bep3.ModuleName, hard.ModuleName, issuance.ModuleName, incentive.ModuleName,
|
|
)
|
|
|
|
app.mm.SetOrderEndBlockers(crisis.ModuleName, gov.ModuleName, staking.ModuleName, pricefeed.ModuleName)
|
|
|
|
app.mm.SetOrderInitGenesis(
|
|
auth.ModuleName, // loads all accounts - should run before any module with a module account
|
|
validatorvesting.ModuleName, distr.ModuleName,
|
|
staking.ModuleName, bank.ModuleName, slashing.ModuleName,
|
|
gov.ModuleName, mint.ModuleName, evidence.ModuleName,
|
|
pricefeed.ModuleName, cdp.ModuleName, hard.ModuleName, auction.ModuleName, swap.ModuleName,
|
|
bep3.ModuleName, kavadist.ModuleName, incentive.ModuleName, committee.ModuleName, issuance.ModuleName,
|
|
supply.ModuleName, // calculates the total supply from account - should run after modules that modify accounts in genesis
|
|
crisis.ModuleName, // runs the invariants at genesis - should run after other modules
|
|
genutil.ModuleName, // genutils must occur after staking so that pools are properly initialized with tokens from genesis accounts.
|
|
)
|
|
|
|
app.mm.RegisterInvariants(&app.crisisKeeper)
|
|
app.mm.RegisterRoutes(app.Router(), app.QueryRouter())
|
|
|
|
// create the simulation manager and define the order of the modules for deterministic simulations
|
|
//
|
|
// NOTE: This is not required for apps that don't use the simulator for fuzz testing
|
|
// transactions.
|
|
app.sm = module.NewSimulationManager(
|
|
auth.NewAppModule(app.accountKeeper),
|
|
validatorvesting.NewAppModule(app.vvKeeper, app.accountKeeper),
|
|
bank.NewAppModule(app.bankKeeper, app.accountKeeper),
|
|
supply.NewAppModule(app.supplyKeeper, app.accountKeeper),
|
|
gov.NewAppModule(app.govKeeper, app.accountKeeper, app.supplyKeeper),
|
|
mint.NewAppModule(app.mintKeeper),
|
|
distr.NewAppModule(app.distrKeeper, app.accountKeeper, app.supplyKeeper, app.stakingKeeper),
|
|
staking.NewAppModule(app.stakingKeeper, app.accountKeeper, app.supplyKeeper),
|
|
slashing.NewAppModule(app.slashingKeeper, app.accountKeeper, app.stakingKeeper),
|
|
pricefeed.NewAppModule(app.pricefeedKeeper, app.accountKeeper),
|
|
cdp.NewAppModule(app.cdpKeeper, app.accountKeeper, app.pricefeedKeeper, app.supplyKeeper),
|
|
auction.NewAppModule(app.auctionKeeper, app.accountKeeper, app.supplyKeeper),
|
|
bep3.NewAppModule(app.bep3Keeper, app.accountKeeper, app.supplyKeeper),
|
|
kavadist.NewAppModule(app.kavadistKeeper, app.supplyKeeper),
|
|
incentive.NewAppModule(app.incentiveKeeper, app.accountKeeper, app.supplyKeeper, app.cdpKeeper),
|
|
committee.NewAppModule(app.committeeKeeper, app.accountKeeper),
|
|
issuance.NewAppModule(app.issuanceKeeper, app.accountKeeper, app.supplyKeeper),
|
|
hard.NewAppModule(app.hardKeeper, app.supplyKeeper, app.pricefeedKeeper),
|
|
swap.NewAppModule(app.swapKeeper),
|
|
)
|
|
|
|
app.sm.RegisterStoreDecoders()
|
|
|
|
// initialize stores
|
|
app.MountKVStores(keys)
|
|
app.MountTransientStores(tkeys)
|
|
|
|
// initialize the app
|
|
app.SetInitChainer(app.InitChainer)
|
|
app.SetBeginBlocker(app.BeginBlocker)
|
|
var antehandler sdk.AnteHandler
|
|
if appOpts.MempoolEnableAuth {
|
|
var getAuthorizedAddresses ante.AddressFetcher = func(sdk.Context) []sdk.AccAddress { return appOpts.MempoolAuthAddresses }
|
|
antehandler = ante.NewAnteHandler(app.accountKeeper, app.supplyKeeper, auth.DefaultSigVerificationGasConsumer, app.bep3Keeper.GetAuthorizedAddresses, app.pricefeedKeeper.GetAuthorizedAddresses, getAuthorizedAddresses)
|
|
} else {
|
|
antehandler = ante.NewAnteHandler(app.accountKeeper, app.supplyKeeper, auth.DefaultSigVerificationGasConsumer)
|
|
}
|
|
app.SetAnteHandler(antehandler)
|
|
app.SetEndBlocker(app.EndBlocker)
|
|
|
|
// load store
|
|
if !appOpts.SkipLoadLatest {
|
|
err := app.LoadLatestVersion(app.keys[bam.MainStoreKey])
|
|
if err != nil {
|
|
tmos.Exit(err.Error())
|
|
}
|
|
}
|
|
|
|
return app
|
|
}
|
|
|
|
// custom tx codec
|
|
func MakeCodec() *codec.Codec {
|
|
var cdc = codec.New()
|
|
|
|
ModuleBasics.RegisterCodec(cdc)
|
|
vesting.RegisterCodec(cdc)
|
|
sdk.RegisterCodec(cdc)
|
|
codec.RegisterCrypto(cdc)
|
|
codec.RegisterEvidences(cdc)
|
|
|
|
return cdc.Seal()
|
|
}
|
|
|
|
// SetBech32AddressPrefixes sets the global prefix to be used when serializing addresses to bech32 strings.
|
|
func SetBech32AddressPrefixes(config *sdk.Config) {
|
|
config.SetBech32PrefixForAccount(Bech32MainPrefix, Bech32MainPrefix+sdk.PrefixPublic)
|
|
config.SetBech32PrefixForValidator(Bech32MainPrefix+sdk.PrefixValidator+sdk.PrefixOperator, Bech32MainPrefix+sdk.PrefixValidator+sdk.PrefixOperator+sdk.PrefixPublic)
|
|
config.SetBech32PrefixForConsensusNode(Bech32MainPrefix+sdk.PrefixValidator+sdk.PrefixConsensus, Bech32MainPrefix+sdk.PrefixValidator+sdk.PrefixConsensus+sdk.PrefixPublic)
|
|
}
|
|
|
|
// SetBip44CoinType sets the global coin type to be used in hierarchical deterministic wallets.
|
|
func SetBip44CoinType(config *sdk.Config) {
|
|
config.SetCoinType(Bip44CoinType)
|
|
}
|
|
|
|
// application updates every end block
|
|
func (app *App) BeginBlocker(ctx sdk.Context, req abci.RequestBeginBlock) abci.ResponseBeginBlock {
|
|
return app.mm.BeginBlock(ctx, req)
|
|
}
|
|
|
|
// application updates every end block
|
|
func (app *App) EndBlocker(ctx sdk.Context, req abci.RequestEndBlock) abci.ResponseEndBlock {
|
|
return app.mm.EndBlock(ctx, req)
|
|
}
|
|
|
|
// custom logic for app initialization
|
|
func (app *App) InitChainer(ctx sdk.Context, req abci.RequestInitChain) abci.ResponseInitChain {
|
|
var genesisState GenesisState
|
|
app.cdc.MustUnmarshalJSON(req.AppStateBytes, &genesisState)
|
|
return app.mm.InitGenesis(ctx, genesisState)
|
|
}
|
|
|
|
// load a particular height
|
|
func (app *App) LoadHeight(height int64) error {
|
|
return app.LoadVersion(height, app.keys[bam.MainStoreKey])
|
|
}
|
|
|
|
// ModuleAccountAddrs returns all the app's module account addresses.
|
|
func (app *App) ModuleAccountAddrs() map[string]bool {
|
|
modAccAddrs := make(map[string]bool)
|
|
for acc := range mAccPerms {
|
|
modAccAddrs[supply.NewModuleAddress(acc).String()] = true
|
|
}
|
|
|
|
return modAccAddrs
|
|
}
|
|
|
|
// BlacklistedAccAddrs returns all the app's module account addresses black listed for receiving tokens.
|
|
func (app *App) BlacklistedAccAddrs() map[string]bool {
|
|
blacklistedAddrs := make(map[string]bool)
|
|
for acc := range mAccPerms {
|
|
blacklistedAddrs[supply.NewModuleAddress(acc).String()] = !allowedReceivingModAcc[acc]
|
|
}
|
|
|
|
return blacklistedAddrs
|
|
}
|
|
|
|
// Codec returns the application's sealed codec.
|
|
func (app *App) Codec() *codec.Codec {
|
|
return app.cdc
|
|
}
|
|
|
|
// SimulationManager implements the SimulationApp interface
|
|
func (app *App) SimulationManager() *module.SimulationManager {
|
|
return app.sm
|
|
}
|
|
|
|
// GetMaccPerms returns a mapping of the application's module account permissions.
|
|
func GetMaccPerms() map[string][]string {
|
|
perms := make(map[string][]string)
|
|
for k, v := range mAccPerms {
|
|
perms[k] = v
|
|
}
|
|
return perms
|
|
}
|