2019-08-26 18:23:11 +00:00
|
|
|
package build
|
|
|
|
|
2019-09-27 21:42:12 +00:00
|
|
|
import "math/big"
|
|
|
|
|
2019-08-26 18:23:11 +00:00
|
|
|
// Core network constants
|
|
|
|
|
2019-09-24 11:16:05 +00:00
|
|
|
// /////
|
|
|
|
// Storage
|
|
|
|
|
2019-08-26 18:23:11 +00:00
|
|
|
const UnixfsChunkSize uint64 = 1 << 20
|
2019-08-27 22:10:23 +00:00
|
|
|
const UnixfsLinksPerLevel = 1024
|
|
|
|
|
2019-09-24 10:30:48 +00:00
|
|
|
const SectorSize = 16 << 20
|
2019-08-26 18:23:11 +00:00
|
|
|
|
2019-09-24 11:16:05 +00:00
|
|
|
// /////
|
|
|
|
// Payments
|
|
|
|
|
2019-09-19 16:17:49 +00:00
|
|
|
// Blocks
|
2019-09-09 13:55:06 +00:00
|
|
|
const PaymentChannelClosingDelay = 6 * 60 * 2 // six hours
|
|
|
|
|
2019-09-19 16:17:49 +00:00
|
|
|
// Blocks
|
2019-09-09 19:21:37 +00:00
|
|
|
const DealVoucherSkewLimit = 10
|
|
|
|
|
2019-09-24 21:13:47 +00:00
|
|
|
// Blocks
|
|
|
|
const MinDealVoucherIncrement = ProvingPeriodDuration
|
|
|
|
|
|
|
|
const MaxVouchersPerDeal = 768 // roughly one voucher per 10h over a year
|
|
|
|
|
2019-09-24 11:16:05 +00:00
|
|
|
// /////
|
|
|
|
// Consensus / Network
|
|
|
|
|
|
|
|
// Seconds
|
2019-09-25 18:40:10 +00:00
|
|
|
const BlockDelay = 6
|
2019-09-24 11:16:05 +00:00
|
|
|
|
|
|
|
// Seconds
|
|
|
|
const AllowableClockDrift = BlockDelay * 2
|
|
|
|
|
2019-09-19 16:17:49 +00:00
|
|
|
// Blocks
|
2019-10-08 00:28:13 +00:00
|
|
|
const ForkLengthThreshold = 100
|
2019-09-19 16:17:49 +00:00
|
|
|
|
2019-10-13 01:18:59 +00:00
|
|
|
// Blocks (e)
|
2019-10-13 22:51:40 +00:00
|
|
|
const BlocksPerEpoch = 1
|
2019-10-13 01:18:59 +00:00
|
|
|
|
2019-09-24 11:16:05 +00:00
|
|
|
// /////
|
|
|
|
// Proofs / Mining
|
|
|
|
|
2019-09-19 16:17:49 +00:00
|
|
|
// Blocks
|
2019-09-06 06:26:02 +00:00
|
|
|
const RandomnessLookback = 20
|
2019-09-03 17:45:55 +00:00
|
|
|
|
2019-09-19 16:17:49 +00:00
|
|
|
// Blocks
|
2019-09-25 18:40:10 +00:00
|
|
|
const ProvingPeriodDuration = 40
|
2019-09-24 11:16:05 +00:00
|
|
|
|
|
|
|
// Blocks
|
2019-09-25 18:40:10 +00:00
|
|
|
const PoSTChallangeTime = 20
|
2019-09-19 13:32:00 +00:00
|
|
|
|
2019-09-12 23:48:03 +00:00
|
|
|
const PowerCollateralProportion = 20
|
|
|
|
const PerCapitaCollateralProportion = 5
|
|
|
|
const CollateralPrecision = 100
|
|
|
|
|
2019-09-24 11:16:05 +00:00
|
|
|
// /////
|
|
|
|
// Devnet settings
|
|
|
|
|
2019-09-12 23:48:03 +00:00
|
|
|
const TotalFilecoin = 2000000000
|
2019-09-21 00:22:28 +00:00
|
|
|
const MiningRewardTotal = 1400000000
|
2019-09-26 22:33:38 +00:00
|
|
|
|
2019-09-28 16:29:10 +00:00
|
|
|
const InitialRewardStr = "153856861913558700202"
|
2019-09-27 21:42:12 +00:00
|
|
|
|
2019-09-27 22:02:02 +00:00
|
|
|
var InitialReward *big.Int
|
2019-09-26 22:33:38 +00:00
|
|
|
|
2019-09-12 23:48:03 +00:00
|
|
|
const FilecoinPrecision = 1000000000000000000
|
2019-09-12 04:12:35 +00:00
|
|
|
|
2019-09-21 00:22:28 +00:00
|
|
|
// six years
|
2019-09-27 20:47:10 +00:00
|
|
|
// Blocks
|
2019-09-21 00:22:28 +00:00
|
|
|
const HalvingPeriodBlocks = 6 * 365 * 24 * 60 * 2
|
|
|
|
|
2019-09-27 20:47:10 +00:00
|
|
|
// Blocks
|
2019-09-21 00:22:28 +00:00
|
|
|
const AdjustmentPeriod = 7 * 24 * 60 * 2
|
|
|
|
|
2019-08-26 18:23:11 +00:00
|
|
|
// TODO: Move other important consts here
|
2019-09-27 21:42:12 +00:00
|
|
|
|
|
|
|
func init() {
|
2019-09-27 22:02:02 +00:00
|
|
|
InitialReward = new(big.Int)
|
2019-09-27 21:42:12 +00:00
|
|
|
|
|
|
|
var ok bool
|
2019-09-27 22:02:02 +00:00
|
|
|
InitialReward, ok = InitialReward.
|
|
|
|
SetString(InitialRewardStr, 10)
|
2019-09-27 21:42:12 +00:00
|
|
|
if !ok {
|
2019-09-27 22:02:02 +00:00
|
|
|
panic("could not parse InitialRewardStr")
|
2019-09-27 21:42:12 +00:00
|
|
|
}
|
|
|
|
}
|
2019-10-09 12:55:27 +00:00
|
|
|
|
|
|
|
// Sync
|
|
|
|
const BadBlockCacheSize = 8192
|