2021-08-26 10:08:11 +00:00
|
|
|
package keeper
|
|
|
|
|
|
|
|
import (
|
2022-02-23 18:48:44 +00:00
|
|
|
"math/big"
|
2021-08-26 10:08:11 +00:00
|
|
|
|
2022-07-28 13:43:49 +00:00
|
|
|
sdkmath "cosmossdk.io/math"
|
2022-02-23 18:48:44 +00:00
|
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
2022-06-19 09:43:41 +00:00
|
|
|
"github.com/evmos/ethermint/x/feemarket/types"
|
2021-08-26 10:08:11 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// GetParams returns the total set of fee market parameters.
|
|
|
|
func (k Keeper) GetParams(ctx sdk.Context) (params types.Params) {
|
2022-07-19 15:00:43 +00:00
|
|
|
// TODO: update once https://github.com/cosmos/cosmos-sdk/pull/12615 is merged
|
|
|
|
// and released
|
|
|
|
for _, pair := range params.ParamSetPairs() {
|
|
|
|
k.paramSpace.GetIfExists(ctx, pair.Key, pair.Value)
|
|
|
|
}
|
2021-08-26 10:08:11 +00:00
|
|
|
return params
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetParams sets the fee market parameters to the param space.
|
|
|
|
func (k Keeper) SetParams(ctx sdk.Context, params types.Params) {
|
|
|
|
k.paramSpace.SetParamSet(ctx, ¶ms)
|
|
|
|
}
|
2022-02-23 18:48:44 +00:00
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// Parent Base Fee
|
|
|
|
// Required by EIP1559 base fee calculation.
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2022-10-19 16:21:59 +00:00
|
|
|
// GetBaseFeeEnabled returns true if base fee is enabled
|
|
|
|
func (k Keeper) GetBaseFeeEnabled(ctx sdk.Context) bool {
|
|
|
|
noBaseFee := false
|
|
|
|
enableHeight := int64(0)
|
|
|
|
k.paramSpace.GetIfExists(ctx, types.ParamStoreKeyNoBaseFee, &noBaseFee)
|
|
|
|
k.paramSpace.GetIfExists(ctx, types.ParamStoreKeyEnableHeight, &enableHeight)
|
|
|
|
return !noBaseFee && ctx.BlockHeight() >= enableHeight
|
|
|
|
}
|
|
|
|
|
2022-02-23 18:48:44 +00:00
|
|
|
// GetBaseFee get's the base fee from the paramSpace
|
|
|
|
// return nil if base fee is not enabled
|
|
|
|
func (k Keeper) GetBaseFee(ctx sdk.Context) *big.Int {
|
|
|
|
params := k.GetParams(ctx)
|
|
|
|
if params.NoBaseFee {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-09-23 16:06:25 +00:00
|
|
|
baseFee := params.BaseFee.BigInt()
|
|
|
|
if baseFee == nil || baseFee.Sign() == 0 {
|
|
|
|
// try v1 format
|
|
|
|
return k.GetBaseFeeV1(ctx)
|
|
|
|
}
|
|
|
|
|
|
|
|
return baseFee
|
2022-02-23 18:48:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SetBaseFee set's the base fee in the paramSpace
|
|
|
|
func (k Keeper) SetBaseFee(ctx sdk.Context, baseFee *big.Int) {
|
2022-07-28 13:43:49 +00:00
|
|
|
k.paramSpace.Set(ctx, types.ParamStoreKeyBaseFee, sdkmath.NewIntFromBigInt(baseFee))
|
2022-02-23 18:48:44 +00:00
|
|
|
}
|