2022-01-08 00:39:27 +00:00
|
|
|
syntax = "proto3";
|
2024-05-01 03:56:00 +00:00
|
|
|
package zgc.pricefeed.v1beta1;
|
2022-01-08 00:39:27 +00:00
|
|
|
|
|
|
|
import "gogoproto/gogo.proto";
|
|
|
|
import "google/protobuf/timestamp.proto";
|
|
|
|
|
2024-05-01 03:17:24 +00:00
|
|
|
option go_package = "github.com/0glabs/0g-chain/x/pricefeed/types";
|
2022-11-22 23:22:07 +00:00
|
|
|
option (gogoproto.equal_all) = true;
|
2022-01-08 00:39:27 +00:00
|
|
|
option (gogoproto.verbose_equal_all) = true;
|
|
|
|
|
|
|
|
// Msg defines the pricefeed Msg service.
|
|
|
|
service Msg {
|
|
|
|
// PostPrice defines a method for creating a new post price
|
|
|
|
rpc PostPrice(MsgPostPrice) returns (MsgPostPriceResponse);
|
|
|
|
}
|
|
|
|
|
|
|
|
// MsgPostPrice represents a method for creating a new post price
|
|
|
|
message MsgPostPrice {
|
|
|
|
option (gogoproto.goproto_getters) = false;
|
|
|
|
|
|
|
|
// address of client
|
2022-11-22 23:22:07 +00:00
|
|
|
string from = 1;
|
2022-01-08 00:39:27 +00:00
|
|
|
string market_id = 2 [(gogoproto.customname) = "MarketID"];
|
2022-11-22 23:22:07 +00:00
|
|
|
string price = 3 [
|
|
|
|
(gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Dec",
|
|
|
|
(gogoproto.nullable) = false
|
|
|
|
];
|
|
|
|
google.protobuf.Timestamp expiry = 4 [
|
|
|
|
(gogoproto.stdtime) = true,
|
|
|
|
(gogoproto.nullable) = false
|
|
|
|
];
|
2022-01-08 00:39:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// MsgPostPriceResponse defines the Msg/PostPrice response type.
|
|
|
|
message MsgPostPriceResponse {}
|