2022-04-05 07:09:27 +00:00
|
|
|
syntax = "proto3";
|
|
|
|
package vulcanize.bond.v1beta1;
|
|
|
|
|
|
|
|
import "gogoproto/gogo.proto";
|
|
|
|
import "vulcanize/bond/v1beta1/bond.proto";
|
|
|
|
|
2022-09-07 06:36:11 +00:00
|
|
|
option go_package = "github.com/cerc-io/laconicd/x/bond/types";
|
2022-04-05 07:09:27 +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
|
2022-10-10 10:38:33 +00:00
|
|
|
repeated Bond bonds = 2 [(gogoproto.moretags) = "json:\"bonds\" yaml:\"bonds\""];
|
2022-04-05 07:09:27 +00:00
|
|
|
}
|