2024-02-12 08:34:40 +00:00
|
|
|
package auction
|
|
|
|
|
|
|
|
const (
|
|
|
|
EventTypeCreateAuction = "create-auction"
|
|
|
|
EventTypeCommitBid = "commit-bid"
|
|
|
|
EventTypeRevealBid = "reveal-bid"
|
|
|
|
|
|
|
|
AttributeKeyCommitsDuration = "commits-duration"
|
|
|
|
AttributeKeyRevealsDuration = "reveals-duration"
|
|
|
|
AttributeKeyCommitFee = "commit-fee"
|
|
|
|
AttributeKeyRevealFee = "reveal-fee"
|
|
|
|
AttributeKeyMinimumBid = "minimum-bid"
|
|
|
|
AttributeKeySigner = "signer"
|
2024-02-28 04:34:58 +00:00
|
|
|
AttributeKeyAuctionId = "auction-id"
|
2024-02-12 08:34:40 +00:00
|
|
|
AttributeKeyCommitHash = "commit-hash"
|
|
|
|
AttributeKeyReveal = "reveal"
|
|
|
|
|
|
|
|
AttributeValueCategory = ModuleName
|
|
|
|
)
|