2021-08-26 10:08:11 +00:00
|
|
|
syntax = "proto3";
|
|
|
|
package ethermint.feemarket.v1;
|
|
|
|
|
|
|
|
import "gogoproto/gogo.proto";
|
|
|
|
// import "cosmos/base/query/v1beta1/pagination.proto";
|
|
|
|
import "google/api/annotations.proto";
|
|
|
|
import "ethermint/feemarket/v1/feemarket.proto";
|
|
|
|
|
|
|
|
option go_package = "github.com/tharsis/ethermint/x/feemarket/types";
|
|
|
|
|
|
|
|
// Query defines the gRPC querier service.
|
|
|
|
service Query {
|
|
|
|
// Params queries the parameters of x/feemarket module.
|
|
|
|
rpc Params(QueryParamsRequest) returns (QueryParamsResponse) {
|
|
|
|
option (google.api.http).get = "/feemarket/evm/v1/params";
|
|
|
|
}
|
2021-10-07 11:02:31 +00:00
|
|
|
|
2021-08-26 10:08:11 +00:00
|
|
|
// BaseFee queries the base fee of the parent block of the current block.
|
|
|
|
rpc BaseFee(QueryBaseFeeRequest) returns (QueryBaseFeeResponse) {
|
|
|
|
option (google.api.http).get = "/feemarket/evm/v1/base_fee";
|
|
|
|
}
|
|
|
|
|
|
|
|
// BlockGas queries the gas used at a given block height
|
|
|
|
rpc BlockGas(QueryBlockGasRequest) returns (QueryBlockGasResponse) {
|
|
|
|
option (google.api.http).get = "/feemarket/evm/v1/block_gas";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// QueryParamsRequest defines the request type for querying x/evm parameters.
|
|
|
|
message QueryParamsRequest {}
|
|
|
|
|
|
|
|
// QueryParamsResponse defines the response type for querying x/evm parameters.
|
|
|
|
message QueryParamsResponse {
|
|
|
|
// params define the evm module parameters.
|
|
|
|
Params params = 1 [ (gogoproto.nullable) = false ];
|
|
|
|
}
|
|
|
|
|
|
|
|
// QueryBaseFeeRequest defines the request type for querying the EIP1559 base
|
|
|
|
// fee.
|
|
|
|
message QueryBaseFeeRequest {}
|
|
|
|
|
|
|
|
// BaseFeeResponse returns the EIP1559 base fee.
|
|
|
|
message QueryBaseFeeResponse {
|
2021-10-07 11:02:31 +00:00
|
|
|
string base_fee = 1
|
|
|
|
[ (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Int" ];
|
2021-08-26 10:08:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// QueryBlockGasRequest defines the request type for querying the EIP1559 base
|
|
|
|
// fee.
|
|
|
|
message QueryBlockGasRequest {}
|
|
|
|
|
|
|
|
// QueryBlockGasResponse returns block gas used for a given height.
|
2021-10-07 11:02:31 +00:00
|
|
|
message QueryBlockGasResponse { int64 gas = 1; }
|