2022-01-08 00:39:27 +00:00
|
|
|
syntax = "proto3";
|
|
|
|
package kava.bep3.v1beta1;
|
|
|
|
|
|
|
|
import "gogoproto/gogo.proto";
|
2022-11-22 23:22:07 +00:00
|
|
|
import "google/protobuf/timestamp.proto";
|
|
|
|
import "kava/bep3/v1beta1/bep3.proto";
|
2022-01-08 00:39:27 +00:00
|
|
|
|
|
|
|
option go_package = "github.com/kava-labs/kava/x/bep3/types";
|
|
|
|
|
|
|
|
// GenesisState defines the pricefeed module's genesis state.
|
|
|
|
message GenesisState {
|
|
|
|
// params defines all the paramaters of the module.
|
|
|
|
Params params = 1 [(gogoproto.nullable) = false];
|
|
|
|
|
|
|
|
// atomic_swaps represents the state of stored atomic swaps
|
2022-11-22 23:22:07 +00:00
|
|
|
repeated AtomicSwap atomic_swaps = 2 [
|
|
|
|
(gogoproto.castrepeated) = "AtomicSwaps",
|
|
|
|
(gogoproto.nullable) = false
|
|
|
|
];
|
2022-01-08 00:39:27 +00:00
|
|
|
|
|
|
|
// supplies represents the supply information of each atomic swap
|
2022-11-22 23:22:07 +00:00
|
|
|
repeated AssetSupply supplies = 3 [
|
|
|
|
(gogoproto.castrepeated) = "AssetSupplies",
|
|
|
|
(gogoproto.nullable) = false
|
|
|
|
];
|
2022-01-08 00:39:27 +00:00
|
|
|
|
|
|
|
// previous_block_time represents the time of the previous block
|
2022-11-22 23:22:07 +00:00
|
|
|
google.protobuf.Timestamp previous_block_time = 4 [
|
|
|
|
(gogoproto.stdtime) = true,
|
|
|
|
(gogoproto.nullable) = false
|
|
|
|
];
|
2022-01-08 00:39:27 +00:00
|
|
|
}
|