2024-02-15 07:08:32 +00:00
|
|
|
package module
|
|
|
|
|
|
|
|
import (
|
|
|
|
"cosmossdk.io/core/appmodule"
|
|
|
|
"cosmossdk.io/core/store"
|
|
|
|
"cosmossdk.io/depinject"
|
|
|
|
|
|
|
|
"github.com/cosmos/cosmos-sdk/codec"
|
|
|
|
auth "github.com/cosmos/cosmos-sdk/x/auth/keeper"
|
|
|
|
bank "github.com/cosmos/cosmos-sdk/x/bank/keeper"
|
|
|
|
|
|
|
|
modulev1 "git.vdb.to/cerc-io/laconic2d/api/cerc/registry/module/v1"
|
2024-02-28 04:34:58 +00:00
|
|
|
"git.vdb.to/cerc-io/laconic2d/x/auction"
|
2024-02-15 07:08:32 +00:00
|
|
|
auctionkeeper "git.vdb.to/cerc-io/laconic2d/x/auction/keeper"
|
2024-02-28 04:34:58 +00:00
|
|
|
"git.vdb.to/cerc-io/laconic2d/x/bond"
|
2024-02-15 07:08:32 +00:00
|
|
|
bondkeeper "git.vdb.to/cerc-io/laconic2d/x/bond/keeper"
|
|
|
|
"git.vdb.to/cerc-io/laconic2d/x/registry/keeper"
|
|
|
|
)
|
|
|
|
|
|
|
|
var _ appmodule.AppModule = AppModule{}
|
|
|
|
|
|
|
|
// IsOnePerModuleType implements the depinject.OnePerModuleType interface.
|
|
|
|
func (am AppModule) IsOnePerModuleType() {}
|
|
|
|
|
|
|
|
// IsAppModule implements the appmodule.AppModule interface.
|
|
|
|
func (am AppModule) IsAppModule() {}
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
appmodule.Register(
|
|
|
|
&modulev1.Module{},
|
|
|
|
appmodule.Provide(ProvideModule),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
type ModuleInputs struct {
|
|
|
|
depinject.In
|
|
|
|
|
|
|
|
Cdc codec.Codec
|
|
|
|
StoreService store.KVStoreService
|
|
|
|
|
|
|
|
AccountKeeper auth.AccountKeeper
|
|
|
|
BankKeeper bank.Keeper
|
|
|
|
|
2024-02-28 04:34:58 +00:00
|
|
|
BondKeeper *bondkeeper.Keeper
|
|
|
|
AuctionKeeper *auctionkeeper.Keeper
|
2024-02-15 07:08:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type ModuleOutputs struct {
|
|
|
|
depinject.Out
|
|
|
|
|
|
|
|
Keeper keeper.Keeper
|
|
|
|
Module appmodule.AppModule
|
2024-02-28 04:34:58 +00:00
|
|
|
|
|
|
|
AuctionHooks auction.AuctionHooksWrapper
|
|
|
|
BondHooks bond.BondHooksWrapper
|
2024-02-15 07:08:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func ProvideModule(in ModuleInputs) ModuleOutputs {
|
|
|
|
k := keeper.NewKeeper(
|
|
|
|
in.Cdc,
|
|
|
|
in.StoreService,
|
|
|
|
in.AccountKeeper,
|
|
|
|
in.BankKeeper,
|
|
|
|
in.BondKeeper,
|
|
|
|
in.AuctionKeeper,
|
|
|
|
)
|
|
|
|
m := NewAppModule(in.Cdc, k)
|
|
|
|
|
2024-02-28 04:34:58 +00:00
|
|
|
recordKeeper := keeper.NewRecordKeeper(in.Cdc, &k, in.AuctionKeeper)
|
|
|
|
|
|
|
|
return ModuleOutputs{
|
|
|
|
Module: m, Keeper: k,
|
|
|
|
AuctionHooks: auction.AuctionHooksWrapper{AuctionUsageKeeper: recordKeeper},
|
|
|
|
BondHooks: bond.BondHooksWrapper{BondUsageKeeper: recordKeeper},
|
|
|
|
}
|
2024-02-15 07:08:32 +00:00
|
|
|
}
|