lotus/build/params.go

121 lines
2.0 KiB
Go
Raw Normal View History

2019-08-26 18:23:11 +00:00
package build
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
var SectorSizes = []uint64{
16 << 20,
2019-10-16 07:09:08 +00:00
256 << 20,
1 << 30,
}
func SupportedSectorSize(ssize uint64) bool {
for _, ss := range SectorSizes {
if ssize == ss {
return true
}
}
return false
}
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-24 11:16:05 +00:00
// /////
// Consensus / Network
// Seconds
const BlockDelay = 2
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-28 18:22:40 +00:00
const BlocksPerEpoch = 3
2019-10-13 01:18:59 +00:00
// Blocks
const Finality = 500
2019-09-24 11:16:05 +00:00
// /////
// Proofs
2019-09-24 11:16:05 +00:00
2019-09-19 16:17:49 +00:00
// Blocks
2019-10-28 18:25:24 +00:00
const ProvingPeriodDuration = 60
2019-09-03 17:45:55 +00:00
// PoStChallangeTime sets the window in which post computation should happen
2019-09-19 16:17:49 +00:00
// Blocks
2019-10-28 18:25:24 +00:00
const PoStChallangeTime = ProvingPeriodDuration - 6
// PoStRandomnessLookback is additional randomness lookback for PoSt computation
// To compute randomness epoch in a given proving period:
// RandH = PPE - PoStChallangeTime - PoStRandomnessLookback
//
// Blocks
const PoStRandomnessLookback = 1
// Blocks
const SealRandomnessLookback = Finality
// /////
// Mining
2019-09-24 11:16:05 +00:00
// Blocks
const EcRandomnessLookback = 300
2019-10-17 00:43:38 +00:00
const PowerCollateralProportion = 5
const PerCapitaCollateralProportion = 1
const CollateralPrecision = 1000
// Blocks
const InteractivePoRepDelay = 10
2019-09-24 11:16:05 +00:00
// /////
// Devnet settings
const TotalFilecoin = 2000000000
2019-09-21 00:22:28 +00:00
const MiningRewardTotal = 1400000000
const InitialRewardStr = "153856861913558700202"
var InitialReward *big.Int
const FilecoinPrecision = 1000000000000000000
2019-09-12 04:12:35 +00:00
2019-09-21 00:22:28 +00:00
// six years
// Blocks
2019-09-21 00:22:28 +00:00
const HalvingPeriodBlocks = 6 * 365 * 24 * 60 * 2
// 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
func init() {
InitialReward = new(big.Int)
var ok bool
InitialReward, ok = InitialReward.
SetString(InitialRewardStr, 10)
if !ok {
panic("could not parse InitialRewardStr")
}
}
2019-10-09 12:55:27 +00:00
// Sync
const BadBlockCacheSize = 8192