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-04-01 14:23:34 +00:00
|
|
|
option go_package = "git.vdb.to/cerc-io/laconicd/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.
|
2024-03-12 05:37:24 +00:00
|
|
|
Params params = 1 [ (gogoproto.nullable) = false ];
|
2022-03-31 10:00:02 +00:00
|
|
|
|
|
|
|
// bonds defines all the bonds
|
2024-03-12 05:37:24 +00:00
|
|
|
repeated Bond bonds = 2
|
|
|
|
[ (gogoproto.moretags) = "json:\"bonds\" yaml:\"bonds\"" ];
|
2022-03-31 10:00:02 +00:00
|
|
|
}
|