2024-02-01 04:48:40 +00:00
|
|
|
package module
|
2024-02-01 10:58:34 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"cosmossdk.io/core/appmodule"
|
2024-02-02 09:39:10 +00:00
|
|
|
"cosmossdk.io/core/store"
|
2024-02-01 10:58:34 +00:00
|
|
|
"cosmossdk.io/depinject"
|
|
|
|
|
|
|
|
"github.com/cosmos/cosmos-sdk/codec"
|
2024-02-02 09:39:10 +00:00
|
|
|
auth "github.com/cosmos/cosmos-sdk/x/auth/keeper"
|
|
|
|
bank "github.com/cosmos/cosmos-sdk/x/bank/keeper"
|
2024-02-01 10:58:34 +00:00
|
|
|
|
2024-04-01 09:57:26 +00:00
|
|
|
modulev1 "git.vdb.to/cerc-io/laconicd/api/cerc/bond/module/v1"
|
|
|
|
"git.vdb.to/cerc-io/laconicd/x/bond"
|
|
|
|
"git.vdb.to/cerc-io/laconicd/x/bond/keeper"
|
2024-02-01 10:58:34 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
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),
|
2024-02-28 04:34:58 +00:00
|
|
|
appmodule.Invoke(InvokeSetBondHooks),
|
2024-02-01 10:58:34 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
type ModuleInputs struct {
|
|
|
|
depinject.In
|
|
|
|
|
2024-02-02 09:39:10 +00:00
|
|
|
Cdc codec.Codec
|
|
|
|
StoreService store.KVStoreService
|
|
|
|
|
|
|
|
AccountKeeper auth.AccountKeeper
|
|
|
|
BankKeeper bank.Keeper
|
2024-02-01 10:58:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type ModuleOutputs struct {
|
|
|
|
depinject.Out
|
|
|
|
|
2024-02-28 04:34:58 +00:00
|
|
|
Keeper *keeper.Keeper
|
2024-02-01 10:58:34 +00:00
|
|
|
Module appmodule.AppModule
|
|
|
|
}
|
|
|
|
|
|
|
|
func ProvideModule(in ModuleInputs) ModuleOutputs {
|
2024-02-02 09:39:10 +00:00
|
|
|
k := keeper.NewKeeper(in.Cdc, in.StoreService, in.AccountKeeper, in.BankKeeper)
|
2024-02-01 10:58:34 +00:00
|
|
|
m := NewAppModule(in.Cdc, k)
|
|
|
|
|
|
|
|
return ModuleOutputs{Module: m, Keeper: k}
|
|
|
|
}
|
2024-02-28 04:34:58 +00:00
|
|
|
|
|
|
|
func InvokeSetBondHooks(
|
|
|
|
config *modulev1.Module,
|
|
|
|
keeper *keeper.Keeper,
|
|
|
|
bondHooks map[string]bond.BondHooksWrapper,
|
|
|
|
) error {
|
2024-07-11 05:16:31 +00:00
|
|
|
// All arguments to invokers are optional
|
2024-02-28 04:34:58 +00:00
|
|
|
if keeper == nil || config == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2024-07-11 05:16:31 +00:00
|
|
|
usageKeepers := make([]bond.BondUsageKeeper, 0, len(bondHooks))
|
2024-02-28 04:34:58 +00:00
|
|
|
|
2024-07-11 05:16:31 +00:00
|
|
|
for _, hook := range bondHooks {
|
2024-02-28 04:34:58 +00:00
|
|
|
usageKeepers = append(usageKeepers, hook)
|
|
|
|
}
|
|
|
|
|
|
|
|
keeper.SetUsageKeepers(usageKeepers)
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|