mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-14 20:15:18 +00:00
24 lines
766 B
Protocol Buffer
24 lines
766 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
package kava.kavamint.v1beta1;
|
||
|
|
||
|
import "gogoproto/gogo.proto";
|
||
|
import "google/protobuf/timestamp.proto";
|
||
|
import "kava/kavamint/v1beta1/kavamint.proto";
|
||
|
|
||
|
option go_package = "github.com/kava-labs/kava/x/kavamint/types";
|
||
|
|
||
|
// GenesisState defines the kavamint module's genesis state.
|
||
|
message GenesisState {
|
||
|
option (gogoproto.goproto_getters) = false;
|
||
|
|
||
|
// Params defines all the parameters of the module.
|
||
|
Params params = 1 [(gogoproto.nullable) = false];
|
||
|
|
||
|
// PreviousBlockTime holds the last last time tokens were minted.
|
||
|
// On first block, tokens will be minted for total number of seconds passed since this time.
|
||
|
google.protobuf.Timestamp previous_block_time = 2 [
|
||
|
(gogoproto.stdtime) = true,
|
||
|
(gogoproto.nullable) = false
|
||
|
];
|
||
|
}
|