2021-08-26 10:08:11 +00:00
|
|
|
syntax = "proto3";
|
|
|
|
package ethermint.feemarket.v1;
|
|
|
|
|
|
|
|
import "gogoproto/gogo.proto";
|
|
|
|
import "ethermint/feemarket/v1/feemarket.proto";
|
|
|
|
|
|
|
|
option go_package = "github.com/tharsis/ethermint/x/feemarket/types";
|
|
|
|
|
|
|
|
// GenesisState defines the feemarket module's genesis state.
|
|
|
|
message GenesisState {
|
|
|
|
// params defines all the paramaters of the module.
|
2021-10-07 11:02:31 +00:00
|
|
|
Params params = 1 [ (gogoproto.nullable) = false ];
|
2022-02-23 18:48:44 +00:00
|
|
|
// DEPRECATED: base fee is the exported value from previous software version.
|
2021-08-26 10:08:11 +00:00
|
|
|
// Zero by default.
|
2022-02-23 18:48:44 +00:00
|
|
|
reserved 2;
|
|
|
|
reserved "base_fee";
|
2021-08-26 10:08:11 +00:00
|
|
|
// block gas is the amount of gas used on the last block before the upgrade.
|
|
|
|
// Zero by default.
|
|
|
|
uint64 block_gas = 3;
|
|
|
|
}
|