Prathamesh Musale
52e8d322fa
Some checks failed
Integration Tests / test-integration (push) Successful in 2m29s
E2E Tests / test-e2e (push) Successful in 4m6s
Unit Tests / test-unit (push) Successful in 2m3s
SDK Tests / sdk_tests_authority_auctions (push) Failing after 6m31s
SDK Tests / sdk_tests_nameservice_expiry (push) Successful in 9m11s
SDK Tests / sdk_tests (push) Failing after 10m14s
Part of [Service provider auctions](https://www.notion.so/Service-provider-auctions-a7b63697d818479493ec145ea6ea3c1c) - Add a new type of auction for service providers - Add a command to release provider auction funds - Remove unused auction module params Co-authored-by: IshaVenikar <ishavenikar7@gmail.com> Co-authored-by: Isha Venikar <ishavenikar@Ishas-MacBook-Air.local> Reviewed-on: #59 Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com> Co-committed-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
21 lines
631 B
Go
21 lines
631 B
Go
package auction
|
|
|
|
const (
|
|
EventTypeCreateAuction = "create-auction"
|
|
EventTypeCommitBid = "commit-bid"
|
|
EventTypeRevealBid = "reveal-bid"
|
|
EventTypeReleaseFunds = "release-funds"
|
|
|
|
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
|
|
)
|