2024-02-09 08:44:45 +00:00
|
|
|
syntax = "proto3";
|
|
|
|
|
|
|
|
package cerc.auction.v1;
|
|
|
|
|
|
|
|
import "cosmos/msg/v1/msg.proto";
|
|
|
|
import "gogoproto/gogo.proto";
|
|
|
|
import "google/api/annotations.proto";
|
|
|
|
import "google/protobuf/duration.proto";
|
|
|
|
import "cosmos/base/v1beta1/coin.proto";
|
|
|
|
import "cerc/auction/v1/auction.proto";
|
|
|
|
|
2024-04-01 09:57:26 +00:00
|
|
|
option go_package = "git.vdb.to/cerc-io/laconicd/x/auction";
|
2024-02-15 07:08:32 +00:00
|
|
|
|
2024-02-09 08:44:45 +00:00
|
|
|
// Tx defines the gRPC tx interface
|
|
|
|
service Msg {
|
|
|
|
option (cosmos.msg.v1.service) = true;
|
|
|
|
|
|
|
|
// CreateAuction is the command for creating an auction
|
|
|
|
rpc CreateAuction(MsgCreateAuction) returns (MsgCreateAuctionResponse) {
|
|
|
|
option (google.api.http).post = "/cerc/auction/v1/create_auction";
|
|
|
|
};
|
|
|
|
|
|
|
|
// CommitBid is the command for committing a bid
|
|
|
|
rpc CommitBid(MsgCommitBid) returns (MsgCommitBidResponse) {
|
|
|
|
option (google.api.http).post = "/cerc/auction/v1/commit_bid";
|
|
|
|
};
|
|
|
|
|
|
|
|
// RevealBid is the command for revealing a bid
|
|
|
|
rpc RevealBid(MsgRevealBid) returns (MsgRevealBidResponse) {
|
|
|
|
option (google.api.http).post = "/cerc/auction/v1/reveal_bid";
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
// MsgCreateAuction defines a create auction message
|
|
|
|
message MsgCreateAuction {
|
|
|
|
option (gogoproto.goproto_getters) = false;
|
|
|
|
option (cosmos.msg.v1.signer) = "signer";
|
|
|
|
|
|
|
|
// Duration of the commits phase in seconds
|
|
|
|
google.protobuf.Duration commits_duration = 1 [
|
2024-03-07 11:25:15 +00:00
|
|
|
(gogoproto.nullable) = false,
|
2024-02-09 08:44:45 +00:00
|
|
|
(gogoproto.stdduration) = true,
|
2024-03-07 11:25:15 +00:00
|
|
|
(gogoproto.moretags) = "json:\"commits_duration\" yaml:\"commits_duration\""
|
2024-02-09 08:44:45 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
// Duration of the reveals phase in seconds
|
|
|
|
google.protobuf.Duration reveals_duration = 2 [
|
2024-03-07 11:25:15 +00:00
|
|
|
(gogoproto.nullable) = false,
|
2024-02-09 08:44:45 +00:00
|
|
|
(gogoproto.stdduration) = true,
|
2024-03-07 11:25:15 +00:00
|
|
|
(gogoproto.moretags) = "json:\"reveals_duration\" yaml:\"reveals_duration\""
|
2024-02-09 08:44:45 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
// Commit fees
|
|
|
|
cosmos.base.v1beta1.Coin commit_fee = 3 [
|
|
|
|
(gogoproto.nullable) = false,
|
|
|
|
(gogoproto.moretags) = "json:\"commit_fee\" yaml:\"commit_fee\""
|
|
|
|
];
|
|
|
|
|
|
|
|
// Reveal fees
|
|
|
|
cosmos.base.v1beta1.Coin reveal_fee = 4 [
|
|
|
|
(gogoproto.nullable) = false,
|
|
|
|
(gogoproto.moretags) = "json:\"reveal_fee\" yaml:\"reveal_fee\""
|
|
|
|
];
|
|
|
|
|
|
|
|
// Minimum acceptable bid amount
|
|
|
|
cosmos.base.v1beta1.Coin minimum_bid = 5 [
|
|
|
|
(gogoproto.nullable) = false,
|
|
|
|
(gogoproto.moretags) = "json:\"minimum_bid\" yaml:\"minimum_bid\""
|
|
|
|
];
|
|
|
|
|
|
|
|
// Address of the signer
|
2024-03-07 11:25:15 +00:00
|
|
|
string signer = 6
|
|
|
|
[ (gogoproto.moretags) = "json:\"signer\" yaml:\"signer\"" ];
|
2024-02-09 08:44:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// MsgCreateAuctionResponse returns the details of the created auction
|
|
|
|
message MsgCreateAuctionResponse {
|
|
|
|
option (gogoproto.goproto_getters) = false;
|
|
|
|
|
|
|
|
// Auction details
|
2024-03-07 11:25:15 +00:00
|
|
|
Auction auction = 1
|
|
|
|
[ (gogoproto.moretags) = "json:\"auction\" yaml:\"auction\"" ];
|
2024-02-09 08:44:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// CommitBid defines the message to commit a bid
|
|
|
|
message MsgCommitBid {
|
|
|
|
option (gogoproto.goproto_getters) = false;
|
|
|
|
option (cosmos.msg.v1.signer) = "signer";
|
|
|
|
|
2024-02-28 04:34:58 +00:00
|
|
|
// Auction id
|
2024-03-07 11:25:15 +00:00
|
|
|
string auction_id = 1
|
|
|
|
[ (gogoproto.moretags) = "json:\"auction_id\" yaml:\"auction_id\"" ];
|
2024-02-09 08:44:45 +00:00
|
|
|
|
|
|
|
// Commit Hash
|
2024-03-07 11:25:15 +00:00
|
|
|
string commit_hash = 2
|
|
|
|
[ (gogoproto.moretags) = "json:\"commit_hash\" yaml:\"commit_hash\"" ];
|
2024-02-09 08:44:45 +00:00
|
|
|
|
|
|
|
// Address of the signer
|
2024-03-07 11:25:15 +00:00
|
|
|
string signer = 3
|
|
|
|
[ (gogoproto.moretags) = "json:\"signer\" yaml:\"signer\"" ];
|
2024-02-09 08:44:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// MsgCommitBidResponse returns the state of the auction after the bid creation
|
|
|
|
message MsgCommitBidResponse {
|
|
|
|
option (gogoproto.goproto_getters) = false;
|
|
|
|
|
|
|
|
// Auction details
|
2024-03-07 11:25:15 +00:00
|
|
|
Bid bid = 1 [ (gogoproto.moretags) = "json:\"bid\" yaml:\"bid\"" ];
|
2024-02-09 08:44:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// RevealBid defines the message to reveal a bid
|
|
|
|
message MsgRevealBid {
|
|
|
|
option (gogoproto.goproto_getters) = false;
|
|
|
|
option (cosmos.msg.v1.signer) = "signer";
|
|
|
|
|
2024-02-28 04:34:58 +00:00
|
|
|
// Auction id
|
2024-03-07 11:25:15 +00:00
|
|
|
string auction_id = 1
|
|
|
|
[ (gogoproto.moretags) = "json:\"auction_id\" yaml:\"auction_id\"" ];
|
2024-02-09 08:44:45 +00:00
|
|
|
|
|
|
|
// Commit Hash
|
2024-03-07 11:25:15 +00:00
|
|
|
string reveal = 2
|
|
|
|
[ (gogoproto.moretags) = "json:\"reveal\" yaml:\"reveal\"" ];
|
2024-02-09 08:44:45 +00:00
|
|
|
|
|
|
|
// Address of the signer
|
2024-03-07 11:25:15 +00:00
|
|
|
string signer = 3
|
|
|
|
[ (gogoproto.moretags) = "json:\"signer\" yaml:\"signer\"" ];
|
2024-02-09 08:44:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// MsgRevealBidResponse returns the state of the auction after the bid reveal
|
|
|
|
message MsgRevealBidResponse {
|
|
|
|
option (gogoproto.goproto_getters) = false;
|
|
|
|
|
|
|
|
// Auction details
|
2024-03-07 11:25:15 +00:00
|
|
|
Auction auction = 1
|
|
|
|
[ (gogoproto.moretags) = "json:\"auction\" yaml:\"auction\"" ];
|
2024-02-09 08:44:45 +00:00
|
|
|
}
|