mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 18:15:19 +00:00
ae181604ff
* Add basic earn types and interfaces * Add VaultStrategy type * Update params with allowedVaults, deposit/withdraw msgs * Fill in Deposit method, add keeper methods * Add testutil, params, codec * Add withdraw * emit vault events * Implement vault viewer methods * Update doc comments, strategies * Add earn cli query/tx commands * Add successfull balance withdraw tests * Add ukava vault to dev genesis * Add vault keeper method doc comments * Update stablecoin strategy to only accept usdx * Vault state tests * VaultTotalSupplied tests * msg server test
38 lines
993 B
Go
38 lines
993 B
Go
package keeper
|
|
|
|
import (
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
|
|
"github.com/kava-labs/kava/x/earn/types"
|
|
)
|
|
|
|
// GetParams returns the params from the store
|
|
func (k Keeper) GetParams(ctx sdk.Context) types.Params {
|
|
var p types.Params
|
|
k.paramSubspace.GetParamSet(ctx, &p)
|
|
|
|
return p
|
|
}
|
|
|
|
// SetParams sets params on the store
|
|
func (k Keeper) SetParams(ctx sdk.Context, params types.Params) {
|
|
k.paramSubspace.SetParamSet(ctx, ¶ms)
|
|
}
|
|
|
|
// GetAllowedVaults returns the list of allowed vaults from the module params.
|
|
func (k Keeper) GetAllowedVaults(ctx sdk.Context) types.AllowedVaults {
|
|
return k.GetParams(ctx).AllowedVaults
|
|
}
|
|
|
|
// GetAllowedVault returns a single vault from the module params specified by
|
|
// the denom.
|
|
func (k Keeper) GetAllowedVault(ctx sdk.Context, vaultDenom string) (types.AllowedVault, bool) {
|
|
for _, allowedVault := range k.GetAllowedVaults(ctx) {
|
|
if allowedVault.Denom == vaultDenom {
|
|
return allowedVault, true
|
|
}
|
|
}
|
|
|
|
return types.AllowedVault{}, false
|
|
}
|