forked from cerc-io/laconicd-deprecated
b1cd16e5bf
* Problem: feemarket's query cli has redundant height parameter Soluton: - remove the positional height parameter, since there's a flag already. Update CHANGELOG.md * Apply feemarket to native cosmos tx - add tx extension option for user to input tip price - apply feemarket's base fee to native tx comments and cleanup fallback to default sdk logic when london hardfork not enabled integration test cleanup feemarket query cli commands Update CHANGELOG.md update unit tests disable feemarket in simulation tests for now fix lint Update app/simulation_test.go fix python lint fix lint Update x/evm/types/extension_option.go Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com> address review suggestions * fix unit tests * fix integration test * improve unit test coverage * fix go lint * refactor * fix integration test * fix simulation tests * fix go linter Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>
220 lines
5.5 KiB
Go
220 lines
5.5 KiB
Go
package ante
|
|
|
|
import (
|
|
"math/big"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
codectypes "github.com/cosmos/cosmos-sdk/codec/types"
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
"github.com/cosmos/cosmos-sdk/types/module"
|
|
authtx "github.com/cosmos/cosmos-sdk/x/auth/tx"
|
|
"github.com/ethereum/go-ethereum/params"
|
|
"github.com/evmos/ethermint/encoding"
|
|
ethermint "github.com/evmos/ethermint/types"
|
|
"github.com/evmos/ethermint/x/evm/types"
|
|
evmtypes "github.com/evmos/ethermint/x/evm/types"
|
|
"github.com/tendermint/tendermint/libs/log"
|
|
tmproto "github.com/tendermint/tendermint/proto/tendermint/types"
|
|
)
|
|
|
|
var _ DynamicFeeEVMKeeper = MockEVMKeeper{}
|
|
|
|
type MockEVMKeeper struct {
|
|
BaseFee *big.Int
|
|
EnableLondonHF bool
|
|
}
|
|
|
|
func (m MockEVMKeeper) GetBaseFee(ctx sdk.Context, ethCfg *params.ChainConfig) *big.Int {
|
|
if m.EnableLondonHF {
|
|
return m.BaseFee
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m MockEVMKeeper) GetParams(ctx sdk.Context) evmtypes.Params {
|
|
return evmtypes.DefaultParams()
|
|
}
|
|
|
|
func (m MockEVMKeeper) ChainID() *big.Int {
|
|
return big.NewInt(9000)
|
|
}
|
|
|
|
func TestSDKTxFeeChecker(t *testing.T) {
|
|
// testCases:
|
|
// fallback
|
|
// genesis tx
|
|
// checkTx, validate with min-gas-prices
|
|
// deliverTx, no validation
|
|
// dynamic fee
|
|
// with extension option
|
|
// without extension option
|
|
// london hardfork enableness
|
|
encodingConfig := encoding.MakeConfig(module.NewBasicManager())
|
|
minGasPrices := sdk.NewDecCoins(sdk.NewDecCoin("aphoton", sdk.NewInt(10)))
|
|
|
|
genesisCtx := sdk.NewContext(nil, tmproto.Header{}, false, log.NewNopLogger())
|
|
checkTxCtx := sdk.NewContext(nil, tmproto.Header{Height: 1}, true, log.NewNopLogger()).WithMinGasPrices(minGasPrices)
|
|
deliverTxCtx := sdk.NewContext(nil, tmproto.Header{Height: 1}, false, log.NewNopLogger())
|
|
|
|
testCases := []struct {
|
|
name string
|
|
ctx sdk.Context
|
|
keeper DynamicFeeEVMKeeper
|
|
buildTx func() sdk.Tx
|
|
expFees string
|
|
expPriority int64
|
|
expSuccess bool
|
|
}{
|
|
{
|
|
"success, genesis tx",
|
|
genesisCtx,
|
|
MockEVMKeeper{},
|
|
func() sdk.Tx {
|
|
return encodingConfig.TxConfig.NewTxBuilder().GetTx()
|
|
},
|
|
"",
|
|
0,
|
|
true,
|
|
},
|
|
{
|
|
"fail, min-gas-prices",
|
|
checkTxCtx,
|
|
MockEVMKeeper{},
|
|
func() sdk.Tx {
|
|
return encodingConfig.TxConfig.NewTxBuilder().GetTx()
|
|
},
|
|
"",
|
|
0,
|
|
false,
|
|
},
|
|
{
|
|
"success, min-gas-prices",
|
|
checkTxCtx,
|
|
MockEVMKeeper{},
|
|
func() sdk.Tx {
|
|
txBuilder := encodingConfig.TxConfig.NewTxBuilder()
|
|
txBuilder.SetGasLimit(1)
|
|
txBuilder.SetFeeAmount(sdk.NewCoins(sdk.NewCoin("aphoton", sdk.NewInt(10))))
|
|
return txBuilder.GetTx()
|
|
},
|
|
"10aphoton",
|
|
0,
|
|
true,
|
|
},
|
|
{
|
|
"success, min-gas-prices deliverTx",
|
|
deliverTxCtx,
|
|
MockEVMKeeper{},
|
|
func() sdk.Tx {
|
|
return encodingConfig.TxConfig.NewTxBuilder().GetTx()
|
|
},
|
|
"",
|
|
0,
|
|
true,
|
|
},
|
|
{
|
|
"fail, dynamic fee",
|
|
deliverTxCtx,
|
|
MockEVMKeeper{
|
|
EnableLondonHF: true, BaseFee: big.NewInt(1),
|
|
},
|
|
func() sdk.Tx {
|
|
txBuilder := encodingConfig.TxConfig.NewTxBuilder()
|
|
txBuilder.SetGasLimit(1)
|
|
return txBuilder.GetTx()
|
|
},
|
|
"",
|
|
0,
|
|
false,
|
|
},
|
|
{
|
|
"success, dynamic fee",
|
|
deliverTxCtx,
|
|
MockEVMKeeper{
|
|
EnableLondonHF: true, BaseFee: big.NewInt(10),
|
|
},
|
|
func() sdk.Tx {
|
|
txBuilder := encodingConfig.TxConfig.NewTxBuilder()
|
|
txBuilder.SetGasLimit(1)
|
|
txBuilder.SetFeeAmount(sdk.NewCoins(sdk.NewCoin("aphoton", sdk.NewInt(10))))
|
|
return txBuilder.GetTx()
|
|
},
|
|
"10aphoton",
|
|
0,
|
|
true,
|
|
},
|
|
{
|
|
"success, dynamic fee priority",
|
|
deliverTxCtx,
|
|
MockEVMKeeper{
|
|
EnableLondonHF: true, BaseFee: big.NewInt(10),
|
|
},
|
|
func() sdk.Tx {
|
|
txBuilder := encodingConfig.TxConfig.NewTxBuilder()
|
|
txBuilder.SetGasLimit(1)
|
|
txBuilder.SetFeeAmount(sdk.NewCoins(sdk.NewCoin("aphoton", sdk.NewInt(10).Mul(types.DefaultPriorityReduction).Add(sdk.NewInt(10)))))
|
|
return txBuilder.GetTx()
|
|
},
|
|
"10000010aphoton",
|
|
10,
|
|
true,
|
|
},
|
|
{
|
|
"success, dynamic fee empty tipFeeCap",
|
|
deliverTxCtx,
|
|
MockEVMKeeper{
|
|
EnableLondonHF: true, BaseFee: big.NewInt(10),
|
|
},
|
|
func() sdk.Tx {
|
|
txBuilder := encodingConfig.TxConfig.NewTxBuilder().(authtx.ExtensionOptionsTxBuilder)
|
|
txBuilder.SetGasLimit(1)
|
|
txBuilder.SetFeeAmount(sdk.NewCoins(sdk.NewCoin("aphoton", sdk.NewInt(10).Mul(types.DefaultPriorityReduction))))
|
|
|
|
option, err := codectypes.NewAnyWithValue(ðermint.ExtensionOptionDynamicFeeTx{})
|
|
require.NoError(t, err)
|
|
txBuilder.SetExtensionOptions(option)
|
|
return txBuilder.GetTx()
|
|
},
|
|
"10aphoton",
|
|
0,
|
|
true,
|
|
},
|
|
{
|
|
"success, dynamic fee tipFeeCap",
|
|
deliverTxCtx,
|
|
MockEVMKeeper{
|
|
EnableLondonHF: true, BaseFee: big.NewInt(10),
|
|
},
|
|
func() sdk.Tx {
|
|
txBuilder := encodingConfig.TxConfig.NewTxBuilder().(authtx.ExtensionOptionsTxBuilder)
|
|
txBuilder.SetGasLimit(1)
|
|
txBuilder.SetFeeAmount(sdk.NewCoins(sdk.NewCoin("aphoton", sdk.NewInt(10).Mul(types.DefaultPriorityReduction).Add(sdk.NewInt(10)))))
|
|
|
|
option, err := codectypes.NewAnyWithValue(ðermint.ExtensionOptionDynamicFeeTx{
|
|
MaxPriorityPrice: sdk.NewInt(5).Mul(types.DefaultPriorityReduction),
|
|
})
|
|
require.NoError(t, err)
|
|
txBuilder.SetExtensionOptions(option)
|
|
return txBuilder.GetTx()
|
|
},
|
|
"5000010aphoton",
|
|
5,
|
|
true,
|
|
},
|
|
}
|
|
|
|
for _, tc := range testCases {
|
|
t.Run(tc.name, func(t *testing.T) {
|
|
fees, priority, err := NewDynamicFeeChecker(tc.keeper)(tc.ctx, tc.buildTx())
|
|
if tc.expSuccess {
|
|
require.Equal(t, tc.expFees, fees.String())
|
|
require.Equal(t, tc.expPriority, priority)
|
|
} else {
|
|
require.Error(t, err)
|
|
}
|
|
})
|
|
}
|
|
}
|