2024-02-01 10:58:34 +00:00
|
|
|
syntax = "proto3";
|
|
|
|
|
|
|
|
package cerc.bond.v1;
|
|
|
|
|
|
|
|
import "gogoproto/gogo.proto";
|
|
|
|
import "cerc/bond/v1/bond.proto";
|
|
|
|
|
2024-04-01 09:57:26 +00:00
|
|
|
option go_package = "git.vdb.to/cerc-io/laconicd/x/bond";
|
2024-02-15 07:08:32 +00:00
|
|
|
|
2024-02-01 10:58:34 +00:00
|
|
|
// GenesisState defines the bond module's genesis state.
|
|
|
|
message GenesisState {
|
|
|
|
// params defines all the parameters of the module.
|
2024-03-07 11:25:15 +00:00
|
|
|
Params params = 1 [ (gogoproto.nullable) = false ];
|
2024-02-01 10:58:34 +00:00
|
|
|
|
|
|
|
// bonds defines all the bonds
|
2024-03-07 11:25:15 +00:00
|
|
|
repeated Bond bonds = 2
|
|
|
|
[ (gogoproto.moretags) = "json:\"bonds\" yaml:\"bonds\"" ];
|
2024-02-01 10:58:34 +00:00
|
|
|
}
|