2022-03-31 10:00:02 +00:00
|
|
|
syntax = "proto3";
|
2024-03-06 06:31:09 +00:00
|
|
|
|
|
|
|
package cerc.bond.v1;
|
2022-03-31 10:00:02 +00:00
|
|
|
|
|
|
|
import "gogoproto/gogo.proto";
|
2024-03-06 06:31:09 +00:00
|
|
|
import "cerc/bond/v1/bond.proto";
|
2022-03-31 10:00:02 +00:00
|
|
|
|
2024-03-06 06:31:09 +00:00
|
|
|
option go_package = "git.vdb.to/cerc-io/laconic2d/x/bond";
|
2022-03-31 10:00:02 +00:00
|
|
|
|
|
|
|
// GenesisState defines the bond module's genesis state.
|
|
|
|
message GenesisState {
|
|
|
|
// params defines all the parameters of the module.
|
|
|
|
Params params = 1 [(gogoproto.nullable) = false];
|
|
|
|
|
|
|
|
// bonds defines all the bonds
|
2024-03-06 06:31:09 +00:00
|
|
|
repeated Bond bonds = 2 [(gogoproto.moretags) = "json:\"bonds\" yaml:\"bonds\""];
|
2022-03-31 10:00:02 +00:00
|
|
|
}
|