118 lines
1.9 KiB
Go
118 lines
1.9 KiB
Go
package build
|
|
|
|
import (
|
|
"math/big"
|
|
)
|
|
|
|
// Core network constants
|
|
|
|
// /////
|
|
// Storage
|
|
|
|
const UnixfsChunkSize uint64 = 1 << 20
|
|
const UnixfsLinksPerLevel = 1024
|
|
|
|
var SectorSizes = []uint64{
|
|
16 << 20,
|
|
256 << 20,
|
|
1 << 30,
|
|
}
|
|
|
|
func SupportedSectorSize(ssize uint64) bool {
|
|
for _, ss := range SectorSizes {
|
|
if ssize == ss {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|
|
|
|
// /////
|
|
// Payments
|
|
|
|
// Blocks
|
|
const PaymentChannelClosingDelay = 6 * 60 * 2 // six hours
|
|
|
|
// /////
|
|
// Consensus / Network
|
|
|
|
// Seconds
|
|
const BlockDelay = 10
|
|
|
|
// Seconds
|
|
const AllowableClockDrift = BlockDelay * 2
|
|
|
|
// Blocks
|
|
const ForkLengthThreshold = 100
|
|
|
|
// Blocks (e)
|
|
const BlocksPerEpoch = 3
|
|
|
|
// Blocks
|
|
const Finality = 500
|
|
|
|
// /////
|
|
// Proofs
|
|
|
|
// Blocks
|
|
const ProvingPeriodDuration = 60
|
|
|
|
// PoStChallangeTime sets the window in which post computation should happen
|
|
// Blocks
|
|
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
|
|
|
|
// Blocks
|
|
const EcRandomnessLookback = 300
|
|
|
|
const PowerCollateralProportion = 5
|
|
const PerCapitaCollateralProportion = 1
|
|
const CollateralPrecision = 1000
|
|
|
|
// /////
|
|
// Devnet settings
|
|
|
|
const TotalFilecoin = 2000000000
|
|
const MiningRewardTotal = 1400000000
|
|
|
|
const InitialRewardStr = "153856861913558700202"
|
|
|
|
var InitialReward *big.Int
|
|
|
|
const FilecoinPrecision = 1000000000000000000
|
|
|
|
// six years
|
|
// Blocks
|
|
const HalvingPeriodBlocks = 6 * 365 * 24 * 60 * 2
|
|
|
|
// Blocks
|
|
const AdjustmentPeriod = 7 * 24 * 60 * 2
|
|
|
|
// 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")
|
|
}
|
|
}
|
|
|
|
// Sync
|
|
const BadBlockCacheSize = 8192
|