24 lines
578 B
Protocol Buffer
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;
|
|
}
|