Documentation ¶
Index ¶
- type WrappedSupplyKeeper
- func (k WrappedSupplyKeeper) BurnCoins(ctx sdk.Context, moduleName string, amt sdk.Coins) error
- func (k WrappedSupplyKeeper) Logger(ctx sdk.Context) log.Logger
- func (k WrappedSupplyKeeper) MintCoins(ctx sdk.Context, moduleName string, amt sdk.Coins) error
- func (k *WrappedSupplyKeeper) SetDistrKeeper(distrKeeper *distr.Keeper)
- func (k *WrappedSupplyKeeper) SetMintKeeper(mintKeeper *odinmint.Keeper)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type WrappedSupplyKeeper ¶
WrappedSupplyKeeper encapsulates the underlying supply keeper and overrides its BurnCoins function to send the coins to the community pool instead of just destroying them.
Note that distrKeeper keeps the reference to the distr module keeper. Due to the circular dependency between supply-distr, distrKeeper cannot be initialized when the struct is created. Rather, SetDistrKeeper is expected to be called to set `distrKeeper`.
func WrapSupplyKeeperBurnToCommunityPool ¶
func WrapSupplyKeeperBurnToCommunityPool(sk supply.Keeper) WrappedSupplyKeeper
WrapSupplyKeeperBurnToCommunityPool creates a new instance of WrappedSupplyKeeper with its distrKeeper member set to nil.
func (WrappedSupplyKeeper) BurnCoins ¶
BurnCoins moves the specified amount of coins from the given module name to the community pool. The total supply of the coins will not change.
func (WrappedSupplyKeeper) Logger ¶
func (k WrappedSupplyKeeper) Logger(ctx sdk.Context) log.Logger
Logger returns a module-specific logger.
func (WrappedSupplyKeeper) MintCoins ¶
MintCoins does not create any new coins, just gets them from the community pull
func (*WrappedSupplyKeeper) SetDistrKeeper ¶
func (k *WrappedSupplyKeeper) SetDistrKeeper(distrKeeper *distr.Keeper)
SetDistrKeeper sets distr module keeper for this WrappedSupplyKeeper instance.
func (*WrappedSupplyKeeper) SetMintKeeper ¶
func (k *WrappedSupplyKeeper) SetMintKeeper(mintKeeper *odinmint.Keeper)