Documentation ¶
Index ¶
- func NewMsgServerImpl(keeper Keeper) types.MsgServer
- type AmmHooks
- func (h AmmHooks) AfterExitPool(ctx sdk.Context, sender sdk.AccAddress, pool ammtypes.Pool, ...) error
- func (h AmmHooks) AfterJoinPool(ctx sdk.Context, sender sdk.AccAddress, pool ammtypes.Pool, ...)
- func (h AmmHooks) AfterPoolCreated(ctx sdk.Context, sender sdk.AccAddress, pool ammtypes.Pool)
- func (h AmmHooks) AfterSwap(ctx sdk.Context, sender sdk.AccAddress, pool ammtypes.Pool, input sdk.Coins, ...) error
- type Keeper
- func (k Keeper) AddPoolRewardsAccum(ctx sdk.Context, poolId, timestamp uint64, height int64, ...)
- func (k Keeper) AfterDeposit(ctx sdk.Context, poolId uint64, user string, amount math.Int)
- func (k Keeper) AfterDepositPerReward(ctx sdk.Context, poolId uint64, rewardDenom string, user string, ...)
- func (k Keeper) AfterExitPool(ctx sdk.Context, sender sdk.AccAddress, poolId uint64, shareInAmount math.Int, ...) error
- func (k Keeper) AfterJoinPool(ctx sdk.Context, sender sdk.AccAddress, poolId uint64, enterCoins sdk.Coins, ...)
- func (k Keeper) AfterPoolCreated(ctx sdk.Context, sender sdk.AccAddress, poolId uint64)
- func (k Keeper) AfterSwap(ctx sdk.Context, sender sdk.AccAddress, poolId uint64, input sdk.Coins, ...) error
- func (k Keeper) AfterWithdraw(ctx sdk.Context, poolId uint64, user string, amount math.Int)
- func (k Keeper) AfterWithdrawPerReward(ctx sdk.Context, poolId uint64, rewardDenom string, user string, ...)
- func (k Keeper) AmmHooks() AmmHooks
- func (k Keeper) CalculatePoolAprs(ctx sdk.Context, ids []uint64) []types.PoolApr
- func (k Keeper) CalculateProxyTVL(ctx sdk.Context, baseCurrency string) sdk.Dec
- func (k Keeper) CalculateStableStakeApr(ctx sdk.Context, query *types.QueryStableStakeAprRequest) (math.Int, error)
- func (k Keeper) ClaimRewards(ctx sdk.Context, sender sdk.AccAddress, poolIds []uint64, ...) error
- func (k Keeper) CollectDEXRevenue(ctx sdk.Context) (sdk.Coins, sdk.DecCoins, map[uint64]sdk.Dec)
- func (k Keeper) CollectGasFees(ctx sdk.Context, baseCurrency string) sdk.DecCoins
- func (k Keeper) ConvertGasFeesToUsdc(ctx sdk.Context, baseCurrency string) sdk.Coins
- func (k Keeper) DeletePoolRewardsAccum(ctx sdk.Context, accum types.PoolRewardsAccum)
- func (k Keeper) EndBlocker(ctx sdk.Context)
- func (k Keeper) ExternalIncentive(goCtx context.Context, req *types.QueryExternalIncentiveRequest) (*types.QueryExternalIncentiveResponse, error)
- func (k Keeper) FirstPoolRewardsAccum(ctx sdk.Context, poolId uint64) types.PoolRewardsAccum
- func (k Keeper) GetAllExternalIncentives(ctx sdk.Context) (list []types.ExternalIncentive)
- func (k Keeper) GetAllPoolRewardInfos(ctx sdk.Context) (list []types.PoolRewardInfo)
- func (k Keeper) GetAllPoolRewardsAccum(ctx sdk.Context) (list []types.PoolRewardsAccum)
- func (k Keeper) GetAllPools(ctx sdk.Context) (list []types.PoolInfo)
- func (k Keeper) GetAllUserRewardInfos(ctx sdk.Context) (list []types.UserRewardInfo)
- func (k Keeper) GetBaseCurrencyDenom(ctx sdk.Context) string
- func (k Keeper) GetExternalIncentive(ctx sdk.Context, id uint64) (val types.ExternalIncentive, found bool)
- func (k Keeper) GetExternalIncentiveIndex(ctx sdk.Context) (index uint64)
- func (k Keeper) GetParams(ctx sdk.Context) (params types.Params)
- func (k Keeper) GetPool(ctx sdk.Context, poolId uint64) (val types.PoolInfo, found bool)
- func (k Keeper) GetPoolBalance(ctx sdk.Context, poolId uint64, user string) math.Int
- func (k Keeper) GetPoolRewardInfo(ctx sdk.Context, poolId uint64, rewardDenom string) (val types.PoolRewardInfo, found bool)
- func (k Keeper) GetPoolRewardsAccum(ctx sdk.Context, poolId, timestamp uint64) (types.PoolRewardsAccum, error)
- func (k Keeper) GetPoolTVL(ctx sdk.Context, poolId uint64) math.LegacyDec
- func (k Keeper) GetPoolTotalCommit(ctx sdk.Context, poolId uint64) math.Int
- func (k Keeper) GetRewardDenoms(ctx sdk.Context, poolId uint64) []string
- func (k Keeper) GetUserRewardInfo(ctx sdk.Context, user string, poolId uint64, rewardDenom string) (val types.UserRewardInfo, found bool)
- func (k Keeper) InitPoolParams(ctx sdk.Context, poolId uint64) bool
- func (k Keeper) InitStableStakePoolParams(ctx sdk.Context, poolId uint64) bool
- func (k Keeper) IterateAllPoolRewardsAccum(ctx sdk.Context, handler func(accum types.PoolRewardsAccum) (stop bool))
- func (k Keeper) IteratePoolRewardsAccum(ctx sdk.Context, poolId uint64, ...)
- func (k Keeper) LastPoolRewardsAccum(ctx sdk.Context, poolId uint64) types.PoolRewardsAccum
- func (k Keeper) Logger(ctx sdk.Context) log.Logger
- func (k Keeper) Params(goCtx context.Context, req *types.QueryParamsRequest) (*types.QueryParamsResponse, error)
- func (k Keeper) PoolAprs(goCtx context.Context, req *types.QueryPoolAprsRequest) (*types.QueryPoolAprsResponse, error)
- func (k Keeper) PoolInfo(goCtx context.Context, req *types.QueryPoolInfoRequest) (*types.QueryPoolInfoResponse, error)
- func (k Keeper) PoolRewardInfo(goCtx context.Context, req *types.QueryPoolRewardInfoRequest) (*types.QueryPoolRewardInfoResponse, error)
- func (k Keeper) ProcessExternalRewardsDistribution(ctx sdk.Context)
- func (k Keeper) ProcessLPRewardDistribution(ctx sdk.Context)
- func (k Keeper) ProcessUpdateIncentiveParams(ctx sdk.Context)
- func (k Keeper) RemoveExternalIncentive(ctx sdk.Context, id uint64)
- func (k Keeper) RemovePool(ctx sdk.Context, poolId uint64)
- func (k Keeper) RemovePoolRewardInfo(ctx sdk.Context, poolId uint64, rewardDenom string)
- func (k Keeper) RemoveUserRewardInfo(ctx sdk.Context, user string, poolId uint64, rewardDenom string)
- func (k Keeper) SetExternalIncentive(ctx sdk.Context, externalIncentive types.ExternalIncentive)
- func (k Keeper) SetExternalIncentiveIndex(ctx sdk.Context, index uint64)
- func (k Keeper) SetParams(ctx sdk.Context, params types.Params)
- func (k Keeper) SetPool(ctx sdk.Context, pool types.PoolInfo) error
- func (k Keeper) SetPoolRewardInfo(ctx sdk.Context, poolReward types.PoolRewardInfo) error
- func (k Keeper) SetPoolRewardsAccum(ctx sdk.Context, accum types.PoolRewardsAccum)
- func (k Keeper) SetUserRewardInfo(ctx sdk.Context, userReward types.UserRewardInfo) error
- func (k Keeper) StableStakeApr(goCtx context.Context, req *types.QueryStableStakeAprRequest) (*types.QueryStableStakeAprResponse, error)
- func (k Keeper) StableStakeHooks() StableStakeHooks
- func (k Keeper) UpdateAccPerShare(ctx sdk.Context, poolId uint64, rewardDenom string, amount math.Int)
- func (k Keeper) UpdateAmmPoolAPR(ctx sdk.Context, totalBlocksPerYear int64, totalProxyTVL sdk.Dec, ...)
- func (k Keeper) UpdateLPRewards(ctx sdk.Context) error
- func (k Keeper) UpdatePoolMultipliers(ctx sdk.Context, poolMultipliers []types.PoolMultiplier) bool
- func (k Keeper) UpdateUserRewardDebt(ctx sdk.Context, poolId uint64, rewardDenom string, user string)
- func (k Keeper) UpdateUserRewardPending(ctx sdk.Context, poolId uint64, rewardDenom string, user string, ...)
- func (k Keeper) UserPendingReward(goCtx context.Context, req *types.QueryUserPendingRewardRequest) (*types.QueryUserPendingRewardResponse, error)
- func (k Keeper) UserPoolPendingReward(ctx sdk.Context, user sdk.AccAddress, poolId uint64) sdk.Coins
- func (k Keeper) UserRewardInfo(goCtx context.Context, req *types.QueryUserRewardInfoRequest) (*types.QueryUserRewardInfoResponse, error)
- type StableStakeHooks
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewMsgServerImpl ¶
NewMsgServerImpl returns an implementation of the MsgServer interface for the provided Keeper.
Types ¶
type AmmHooks ¶
type AmmHooks struct {
// contains filtered or unexported fields
}
Hooks wrapper struct for incentive keeper
func (AmmHooks) AfterExitPool ¶
func (h AmmHooks) AfterExitPool(ctx sdk.Context, sender sdk.AccAddress, pool ammtypes.Pool, shareInAmount math.Int, exitCoins sdk.Coins) error
AfterExitPool is called after ExitPool, ExitSwapShareAmountIn, and ExitSwapExternAmountOut
func (AmmHooks) AfterJoinPool ¶
func (h AmmHooks) AfterJoinPool(ctx sdk.Context, sender sdk.AccAddress, pool ammtypes.Pool, enterCoins sdk.Coins, shareOutAmount math.Int)
AfterJoinPool is called after JoinPool, JoinSwapExternAmountIn, and JoinSwapShareAmountOut
func (AmmHooks) AfterPoolCreated ¶
AfterPoolCreated is called after CreatePool
type Keeper ¶
type Keeper struct {
// contains filtered or unexported fields
}
func NewKeeper ¶
func NewKeeper( cdc codec.BinaryCodec, storeKey, memKey storetypes.StoreKey, ps paramtypes.Subspace, parameterKeeper types.ParameterKeeper, ck types.CommitmentKeeper, amm types.AmmKeeper, ok types.OracleKeeper, ap types.AssetProfileKeeper, accountedPoolKeeper types.AccountedPoolKeeper, stableKeeper types.StableStakeKeeper, tokenomicsKeeper types.TokenomicsKeeper, ak types.AccountKeeper, bk types.BankKeeper, authority string, ) *Keeper
func (Keeper) AddPoolRewardsAccum ¶ added in v0.33.0
func (Keeper) AfterDeposit ¶
func (Keeper) AfterDepositPerReward ¶
func (Keeper) AfterExitPool ¶
func (k Keeper) AfterExitPool(ctx sdk.Context, sender sdk.AccAddress, poolId uint64, shareInAmount math.Int, exitCoins sdk.Coins) error
AfterExitPool is called after ExitPool, ExitSwapShareAmountIn, and ExitSwapExternAmountOut
func (Keeper) AfterJoinPool ¶
func (k Keeper) AfterJoinPool(ctx sdk.Context, sender sdk.AccAddress, poolId uint64, enterCoins sdk.Coins, shareOutAmount math.Int)
AfterJoinPool is called after JoinPool, JoinSwapExternAmountIn, and JoinSwapShareAmountOut
func (Keeper) AfterPoolCreated ¶
AfterPoolCreated is called after CreatePool
func (Keeper) AfterSwap ¶
func (k Keeper) AfterSwap(ctx sdk.Context, sender sdk.AccAddress, poolId uint64, input sdk.Coins, output sdk.Coins) error
AfterSwap is called after SwapExactAmountIn and SwapExactAmountOut
func (Keeper) AfterWithdraw ¶
func (Keeper) AfterWithdrawPerReward ¶
func (Keeper) CalculatePoolAprs ¶
func (Keeper) CalculateProxyTVL ¶
Calculate Proxy TVL
func (Keeper) CalculateStableStakeApr ¶
func (Keeper) ClaimRewards ¶ added in v0.33.0
func (k Keeper) ClaimRewards(ctx sdk.Context, sender sdk.AccAddress, poolIds []uint64, recipient sdk.AccAddress) error
func (Keeper) CollectDEXRevenue ¶
Collect all DEX revenues to DEX revenue wallet, while tracking the 60% of it for LPs reward distribution transfer collected fees from different wallets(liquidity pool, perpetual module etc) to the distribution module account Assume this is already in USDC.
func (Keeper) CollectGasFees ¶
func (Keeper) ConvertGasFeesToUsdc ¶
Move gas fees collected to dex revenue wallet Convert it into USDC
func (Keeper) DeletePoolRewardsAccum ¶ added in v0.33.0
func (k Keeper) DeletePoolRewardsAccum(ctx sdk.Context, accum types.PoolRewardsAccum)
func (Keeper) ExternalIncentive ¶
func (k Keeper) ExternalIncentive(goCtx context.Context, req *types.QueryExternalIncentiveRequest) (*types.QueryExternalIncentiveResponse, error)
func (Keeper) FirstPoolRewardsAccum ¶ added in v0.33.0
func (Keeper) GetAllExternalIncentives ¶
func (k Keeper) GetAllExternalIncentives(ctx sdk.Context) (list []types.ExternalIncentive)
func (Keeper) GetAllPoolRewardInfos ¶
func (k Keeper) GetAllPoolRewardInfos(ctx sdk.Context) (list []types.PoolRewardInfo)
func (Keeper) GetAllPoolRewardsAccum ¶ added in v0.33.0
func (k Keeper) GetAllPoolRewardsAccum(ctx sdk.Context) (list []types.PoolRewardsAccum)
func (Keeper) GetAllUserRewardInfos ¶
func (k Keeper) GetAllUserRewardInfos(ctx sdk.Context) (list []types.UserRewardInfo)
func (Keeper) GetExternalIncentive ¶
func (Keeper) GetExternalIncentiveIndex ¶
func (Keeper) GetPoolBalance ¶
func (Keeper) GetPoolRewardInfo ¶
func (Keeper) GetPoolRewardsAccum ¶ added in v0.33.0
func (Keeper) GetPoolTVL ¶
func (Keeper) GetPoolTotalCommit ¶
func (Keeper) GetRewardDenoms ¶
func (Keeper) GetUserRewardInfo ¶
func (Keeper) InitPoolParams ¶
InitPoolParams: creates a poolInfo at the time of pool creation.
func (Keeper) InitStableStakePoolParams ¶
InitStableStakePoolMultiplier: create a stable stake pool information responding to the pool creation.
func (Keeper) IterateAllPoolRewardsAccum ¶ added in v0.33.0
func (Keeper) IteratePoolRewardsAccum ¶ added in v0.33.0
func (Keeper) LastPoolRewardsAccum ¶ added in v0.33.0
func (Keeper) Params ¶
func (k Keeper) Params(goCtx context.Context, req *types.QueryParamsRequest) (*types.QueryParamsResponse, error)
func (Keeper) PoolAprs ¶
func (k Keeper) PoolAprs(goCtx context.Context, req *types.QueryPoolAprsRequest) (*types.QueryPoolAprsResponse, error)
func (Keeper) PoolInfo ¶
func (k Keeper) PoolInfo(goCtx context.Context, req *types.QueryPoolInfoRequest) (*types.QueryPoolInfoResponse, error)
func (Keeper) PoolRewardInfo ¶
func (k Keeper) PoolRewardInfo(goCtx context.Context, req *types.QueryPoolRewardInfoRequest) (*types.QueryPoolRewardInfoResponse, error)
func (Keeper) ProcessExternalRewardsDistribution ¶
func (Keeper) ProcessLPRewardDistribution ¶
func (Keeper) ProcessUpdateIncentiveParams ¶
func (Keeper) RemoveExternalIncentive ¶
func (Keeper) RemovePoolRewardInfo ¶
func (Keeper) RemoveUserRewardInfo ¶
func (Keeper) SetExternalIncentive ¶
func (k Keeper) SetExternalIncentive(ctx sdk.Context, externalIncentive types.ExternalIncentive)
func (Keeper) SetExternalIncentiveIndex ¶
func (Keeper) SetPoolRewardInfo ¶
func (Keeper) SetPoolRewardsAccum ¶ added in v0.33.0
func (k Keeper) SetPoolRewardsAccum(ctx sdk.Context, accum types.PoolRewardsAccum)
func (Keeper) SetUserRewardInfo ¶
func (Keeper) StableStakeApr ¶
func (k Keeper) StableStakeApr(goCtx context.Context, req *types.QueryStableStakeAprRequest) (*types.QueryStableStakeAprResponse, error)
func (Keeper) StableStakeHooks ¶
func (k Keeper) StableStakeHooks() StableStakeHooks
Return the wrapper struct
func (Keeper) UpdateAccPerShare ¶
func (Keeper) UpdateAmmPoolAPR ¶
func (k Keeper) UpdateAmmPoolAPR(ctx sdk.Context, totalBlocksPerYear int64, totalProxyTVL sdk.Dec, edenDenomPrice sdk.Dec)
Update APR for AMM pool
func (Keeper) UpdatePoolMultipliers ¶
func (Keeper) UpdateUserRewardDebt ¶
func (Keeper) UpdateUserRewardPending ¶
func (Keeper) UserPendingReward ¶
func (k Keeper) UserPendingReward(goCtx context.Context, req *types.QueryUserPendingRewardRequest) (*types.QueryUserPendingRewardResponse, error)
func (Keeper) UserPoolPendingReward ¶ added in v0.33.0
func (Keeper) UserRewardInfo ¶
func (k Keeper) UserRewardInfo(goCtx context.Context, req *types.QueryUserRewardInfoRequest) (*types.QueryUserRewardInfoResponse, error)
type StableStakeHooks ¶
type StableStakeHooks struct {
// contains filtered or unexported fields
}
Hooks wrapper struct for incentive keeper