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-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.
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// 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
|
|
|
|
}
|
|
|
|
|
|
|
|
return params.BaseFee.BigInt()
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetBaseFee set's the base fee in the paramSpace
|
|
|
|
func (k Keeper) SetBaseFee(ctx sdk.Context, baseFee *big.Int) {
|
|
|
|
k.paramSpace.Set(ctx, types.ParamStoreKeyBaseFee, sdk.NewIntFromBigInt(baseFee))
|
|
|
|
}
|