bf54193669
* change basefee to a module params * add changelog and fix linter * change params type of basefee and remove default base fee * restaure event * clean code * fix proto * fix protos * fix logic * update rpc tests * fix comment Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>
28 lines
936 B
Protocol Buffer
28 lines
936 B
Protocol Buffer
syntax = "proto3";
|
|
package ethermint.feemarket.v1;
|
|
|
|
import "gogoproto/gogo.proto";
|
|
|
|
option go_package = "github.com/tharsis/ethermint/x/feemarket/types";
|
|
|
|
// Params defines the EVM module parameters
|
|
message Params {
|
|
// no base fee forces the EIP-1559 base fee to 0 (needed for 0 price calls)
|
|
bool no_base_fee = 1;
|
|
// base fee change denominator bounds the amount the base fee can change
|
|
// between blocks.
|
|
uint32 base_fee_change_denominator = 2;
|
|
// elasticity multiplier bounds the maximum gas limit an EIP-1559 block may
|
|
// have.
|
|
uint32 elasticity_multiplier = 3;
|
|
// DEPRECATED: initial base fee for EIP-1559 blocks.
|
|
reserved 4;
|
|
reserved "initial_base_fee";
|
|
// height at which the base fee calculation is enabled.
|
|
int64 enable_height = 5;
|
|
// base fee for EIP-1559 blocks.
|
|
string base_fee = 6 [
|
|
(gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Int",
|
|
(gogoproto.nullable) = false
|
|
];
|
|
} |