gpu-compute-chain/x/colinearcore/auctionconfig/config.go

14 lines
241 B
Go
Raw Normal View History

2022-08-31 15:40:28 -07:00
package auctionconfig
const (
// Times
2022-09-05 15:17:55 -07:00
AuctionTime = 10 // 10 blocks = ~10-30 seconds
// Lease Period Requirements (seconds)
MinLeasePeriod = 3_600 // 1 hour
MaxLeasePeriod = 8_035_200 // 3 months
// Gas Fees
AuctionGas = 10
)