mukan-core/proto/mukan/poj/v1/params.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

24 lines
578 B
Protocol Buffer

syntax = "proto3";
package mukan.poj.v1;
import "amino/amino.proto";
import "gogoproto/gogo.proto";
option go_package = "mukan/x/poj/types";
// Params defines the parameters for the module.
message Params {
option (amino.name) = "mukan/x/poj/Params";
option (gogoproto.equal) = true;
int64 blocks_per_epoch = 1;
int64 micro_cooldown = 2;
int64 macro_cooldown = 3;
int64 macro_streak_limit = 4;
int64 base_reward = 5;
int64 min_reward = 6;
uint64 mining_difficulty = 7;
string mukan_address = 8;
string erkin_address = 9;
string toruk_address = 10;
}