2022-12-16 09:48:38 +00:00
|
|
|
// Copyright 2021 Evmos Foundation
|
|
|
|
// This file is part of Evmos' Ethermint library.
|
|
|
|
//
|
|
|
|
// The Ethermint library is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// The Ethermint library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
|
|
// along with the Ethermint library. If not, see https://github.com/evmos/ethermint/blob/main/LICENSE
|
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-06-19 09:43:41 +00:00
|
|
|
"github.com/evmos/ethermint/x/feemarket/types"
|
2023-01-05 16:59:46 +00:00
|
|
|
|
|
|
|
sdk "github.com/cosmos/cosmos-sdk/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) {
|
2023-01-05 16:59:46 +00:00
|
|
|
store := ctx.KVStore(k.storeKey)
|
|
|
|
bz := store.Get(types.ParamsKey)
|
|
|
|
if len(bz) == 0 {
|
|
|
|
return params
|
2022-07-19 15:00:43 +00:00
|
|
|
}
|
2023-01-05 16:59:46 +00:00
|
|
|
|
|
|
|
k.cdc.MustUnmarshal(bz, ¶ms)
|
2021-08-26 10:08:11 +00:00
|
|
|
return params
|
|
|
|
}
|
|
|
|
|
2023-01-05 16:59:46 +00:00
|
|
|
// SetParams sets the fee market params in a single key
|
|
|
|
func (k Keeper) SetParams(ctx sdk.Context, params types.Params) error {
|
|
|
|
store := ctx.KVStore(k.storeKey)
|
|
|
|
bz, err := k.cdc.Marshal(¶ms)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
store.Set(types.ParamsKey, bz)
|
|
|
|
|
|
|
|
return nil
|
2021-08-26 10:08:11 +00:00
|
|
|
}
|
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 {
|
2023-01-05 16:59:46 +00:00
|
|
|
params := k.GetParams(ctx)
|
|
|
|
return !params.NoBaseFee && ctx.BlockHeight() >= params.EnableHeight
|
2022-10-19 16:21:59 +00:00
|
|
|
}
|
|
|
|
|
2023-01-05 16:59:46 +00:00
|
|
|
// GetBaseFee gets the base fee from the store
|
2022-02-23 18:48:44 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2023-01-05 16:59:46 +00:00
|
|
|
// SetBaseFee set's the base fee in the store
|
2022-02-23 18:48:44 +00:00
|
|
|
func (k Keeper) SetBaseFee(ctx sdk.Context, baseFee *big.Int) {
|
2023-01-05 16:59:46 +00:00
|
|
|
params := k.GetParams(ctx)
|
|
|
|
params.BaseFee = sdk.NewIntFromBigInt(baseFee)
|
|
|
|
err := k.SetParams(ctx, params)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
2022-02-23 18:48:44 +00:00
|
|
|
}
|