syntax = "proto3";
package cyber.clock.v1;
import "gogoproto/gogo.proto";
option go_package = "github.com/cybercongress/go-cyber/x/clock/types";
// GenesisState - initial state of module
message GenesisState {
// Params of this module
Params params = 1 [
(gogoproto.nullable) = false,
(gogoproto.jsontag) = "params,omitempty"
];
}
// Params defines the set of module parameters.
message Params {
// contract_gas_limit defines the maximum amount of gas that can be used by a
// contract.
uint64 contract_gas_limit = 1 [
(gogoproto.jsontag) = "contract_gas_limit,omitempty",
(gogoproto.moretags) = "yaml:\"contract_gas_limit\""
];
}