mukan-core/proto/mukan/poj/v1/genesis.proto
Mukan Erkin Törük 02226c4bd9
Some checks are pending
/ might_release (push) Waiting to run
initial: sovereign Mukan Network fork
2026-05-11 03:18:23 +03:00

20 lines
523 B
Protocol Buffer

syntax = "proto3";
package mukan.poj.v1;
import "amino/amino.proto";
import "gogoproto/gogo.proto";
import "mukan/poj/v1/miner_state.proto";
import "mukan/poj/v1/params.proto";
option go_package = "mukan/x/poj/types";
// GenesisState defines the poj module's genesis state.
message GenesisState {
// params defines all the parameters of the module.
Params params = 1 [
(gogoproto.nullable) = false,
(amino.dont_omitempty) = true
];
repeated MinerState miner_states = 2 [(gogoproto.nullable) = false];
}