Prathamesh Musale
c79b7bea7d
- Implement auction and bond module hooks in registry module - Code cleanup Reviewed-on: deep-stack/laconic2d#9 Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com> Co-committed-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
20 lines
589 B
Go
20 lines
589 B
Go
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"
|
|
AttributeKeyAuctionId = "auction-id"
|
|
AttributeKeyCommitHash = "commit-hash"
|
|
AttributeKeyReveal = "reveal"
|
|
|
|
AttributeValueCategory = ModuleName
|
|
)
|