-
Notifications
You must be signed in to change notification settings - Fork 170
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a3e3a8f
commit f0e86d8
Showing
6 changed files
with
538 additions
and
115 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
syntax = "proto3"; | ||
package umee.auction.v1; | ||
|
||
import "gogoproto/gogo.proto"; | ||
import "cosmos_proto/cosmos.proto"; | ||
import "cosmos/base/v1beta1/coin.proto"; | ||
|
||
option go_package = "github.com/umee-network/umee/v6/x/auction"; | ||
|
||
option (gogoproto.goproto_getters_all) = false; | ||
|
||
// EventRewardsAuctionResult is emitted at the end of each auction that has at least one bidder. | ||
message EventRewardsAuctionResult { | ||
uint32 id = 1; | ||
string bidder = 2 [(cosmos_proto.scalar) = "cosmos.AddressString"]; | ||
// Auctioned tokens. | ||
repeated cosmos.base.v1beta1.Coin rewards = 4 [(gogoproto.nullable) = false]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.